Add export data provider nsi item executor

This commit is contained in:
2025-11-05 09:19:25 +09:00
parent 35c4bb37ce
commit acbbc13fa8
6 changed files with 77 additions and 0 deletions

View File

@ -1,4 +1,5 @@
using Hcs.Broker;
using Hcs.WebApp.BackgroundServices.OperationExecutors.Nsi;
using Hcs.WebApp.BackgroundServices.OperationExecutors.NsiCommon;
using Hcs.WebApp.Data.Hcs;
@ -10,6 +11,9 @@ namespace Hcs.WebApp.BackgroundServices.OperationExecutors
{
switch (operation.Type)
{
case Operation.OperationType.Nsi_ExportNsiItem_15_7_0_1:
return new ExportDataProviderNsiItemExecutor_15_7_0_1(client, scope, operation);
case Operation.OperationType.NsiCommon_ExportNsiItem_15_7_0_1:
return new ExportNsiItemExecutor_15_7_0_1(client, scope, operation);
}