Exemplo n.º 1
0
 public HSProductCommand(AppSettings settings, ICMSClient cms, IOrderCloudClient elevatedOc, ISupplierApiClientHelper apiClientHelper)
 {
     _cms             = cms;
     _oc              = elevatedOc;
     _settings        = settings;
     _apiClientHelper = apiClientHelper;
 }
Exemplo n.º 2
0
 public NotificationCommand(IOrderCloudClient oc, AppSettings settings, ICMSClient cms, IHSProductCommand productCommand, ISupplierApiClientHelper apiClientHelper)
 {
     _oc              = oc;
     _settings        = settings;
     _cms             = cms;
     _productCommand  = productCommand;
     _apiClientHelper = apiClientHelper;
 }
Exemplo n.º 3
0
 public HSKitProductCommand(
     AppSettings settings,
     ICMSClient cms,
     IOrderCloudClient elevatedOc,
     IMeProductCommand meProductCommand
     )
 {
     _cms = cms;
     _oc  = elevatedOc;
     _meProductCommand = meProductCommand;
 }
 public EnvironmentSeedCommand(
     AppSettings settings,
     IPortalService portal,
     IHeadstartSupplierCommand supplierCommand,
     IHSBuyerCommand buyerCommand,
     ICMSClient cms,
     IOrderCloudClient oc
     )
 {
     _settings        = settings;
     _portal          = portal;
     _supplierCommand = supplierCommand;
     _buyerCommand    = buyerCommand;
     _cms             = cms;
     _oc = oc;
 }
Exemplo n.º 5
0
 public SyncCommand(AppSettings settings, IOrderCloudClient client, ICMSClient cms, LogQuery log) : this(settings, client, log)
 {
     _cms = cms;
 }
 public TemplateProductFlatSyncCommand(AppSettings settings, LogQuery log, IOrderCloudClient oc, ICMSClient cms) : base(settings, oc, cms, log)
 {
     _oc    = oc;
     _cms   = cms;
     _token = new OrderCloudIntegrationsFunctionToken(settings);
 }