Esempio n. 1
0
 public HSProductCommand(AppSettings settings, IOrderCloudClient elevatedOc, ISupplierApiClientHelper apiClientHelper, IAssetClient assetClient)
 {
     _oc              = elevatedOc;
     _settings        = settings;
     _apiClientHelper = apiClientHelper;
     _assetClient     = assetClient;
 }
Esempio n. 2
0
 public HSProductCommand(AppSettings settings, ICMSClient cms, IOrderCloudClient elevatedOc, ISupplierApiClientHelper apiClientHelper)
 {
     _cms             = cms;
     _oc              = elevatedOc;
     _settings        = settings;
     _apiClientHelper = apiClientHelper;
 }
Esempio n. 3
0
 public HSSupplierCommand(AppSettings settings, IOrderCloudClient oc, ISupplierApiClientHelper apiClientHelper, ISupplierSyncCommand supplierSync)
 {
     _settings        = settings;
     _oc              = oc;
     _apiClientHelper = apiClientHelper;
     _supplierSync    = supplierSync;
 }
 public NotificationCommand(IOrderCloudClient oc, AppSettings settings, ICMSClient cms, IHSProductCommand productCommand, ISupplierApiClientHelper apiClientHelper)
 {
     _oc              = oc;
     _settings        = settings;
     _cms             = cms;
     _productCommand  = productCommand;
     _apiClientHelper = apiClientHelper;
 }