Example #1
0
 public PostSubmitCommand(
     ISendgridService sendgridService,
     IAvalaraCommand avatax,
     IOrderCloudClient oc,
     IZohoCommand zoho,
     ILineItemCommand lineItemCommand,
     AppSettings settings
     )
 {
     _oc              = oc;
     _avalara         = avatax;
     _zoho            = zoho;
     _sendgridService = sendgridService;
     _lineItemCommand = lineItemCommand;
     _settings        = settings;
 }
Example #2
0
 public PostSubmitCommand(
     ISendgridService sendgridService,
     ITaxCalculator taxCalculator,
     IOrderCloudClient oc,
     IZohoCommand zoho,
     ILineItemCommand lineItemCommand,
     AppSettings settings
     )
 {
     _oc              = oc;
     _taxCalculator   = taxCalculator;
     _zoho            = zoho;
     _sendgridService = sendgridService;
     _lineItemCommand = lineItemCommand;
     _settings        = settings;
 }
 public SupportController(ICheckoutIntegrationCommand checkoutIntegrationCommand, IPostSubmitCommand postSubmitCommand, IZohoCommand zoho, IOrderCloudClient oc, ISupportAlertService supportAlertService, ISendgridService sendgrid)
 {
     _checkoutIntegrationCommand = checkoutIntegrationCommand;
     _postSubmitCommand          = postSubmitCommand;
     _oc       = oc;
     _sendgrid = sendgrid;
 }