Example #1
0
 public SupplierSync(AppSettings settings, IOrderCloudIntegrationsFunctionToken token, ISupplierSyncCommand supplier, IProductTemplateCommand product)
 {
     _settings = settings;
     _token    = token;
     _supplier = supplier;
     _product  = product;
 }
Example #2
0
 public HSSupplierCommand(AppSettings settings, IOrderCloudClient oc, ISupplierApiClientHelper apiClientHelper, ISupplierSyncCommand supplierSync)
 {
     _settings        = settings;
     _oc              = oc;
     _apiClientHelper = apiClientHelper;
     _supplierSync    = supplierSync;
 }
Example #3
0
 public OrderOrchestrationTrigger(AppSettings appSettings, IOrderCloudIntegrationsFunctionToken token,
                                  ISupplierSyncCommand supplier, LogQuery log, IProductUpdateCommand productUpdateCommand)
 {
     _productUpdateCommand = productUpdateCommand;
     _log         = log;
     _appSettings = appSettings;
 }