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;
 }
示例#2
0
 public SupplierController(IHeadstartSupplierCommand command, IOrderCloudClient oc, AppSettings settings) : base(settings)
 {
     _command = command;
     _oc      = oc;
 }