public SupportController(ICheckoutIntegrationCommand checkoutIntegrationCommand, IPostSubmitCommand postSubmitCommand, IZohoCommand zoho, IOrderCloudClient oc, ISupportAlertService supportAlertService, ISendgridService sendgrid)
 {
     _checkoutIntegrationCommand = checkoutIntegrationCommand;
     _postSubmitCommand          = postSubmitCommand;
     _oc       = oc;
     _sendgrid = sendgrid;
 }
 public CheckoutIntegrationController(ICheckoutIntegrationCommand checkoutIntegrationCommand, IPostSubmitCommand postSubmitCommand)
 {
     _checkoutIntegrationCommand = checkoutIntegrationCommand;
     _postSubmitCommand          = postSubmitCommand;
 }
Exemple #3
0
 public CheckoutIntegrationController(AppSettings settings, ICheckoutIntegrationCommand checkoutIntegrationCommand, IPostSubmitCommand postSubmitCommand) : base(settings)
 {
     _checkoutIntegrationCommand = checkoutIntegrationCommand;
     _postSubmitCommand          = postSubmitCommand;
 }