Add new campaign template

This commit is contained in:
2025-11-14 17:13:00 +09:00
parent 506e44f570
commit 1b1fa4bbaa
5 changed files with 26 additions and 26 deletions

View File

@ -12,9 +12,7 @@ namespace Hcs.WebApp.BackgroundServices.ResultGetters
return operation.Type switch
{
Operation.OperationType.Nsi_ExportNsiItem_15_7_0_1 => new ExportDataProviderNsiItemGetter_15_7_0_1(client, scope, operation),
Operation.OperationType.NsiCommon_ExportNsiItem_15_7_0_1 => new ExportNsiItemGetter_15_7_0_1(client, scope, operation),
_ => throw new NotImplementedException($"Не удалось создать получателя результата операции типа {operation.Type}"),
Operation.OperationType.NsiCommon_ExportNsiItem_15_7_0_1 => new ExportNsiItemGetter_15_7_0_1(client, scope, operation)
};
}
}