Exemplo n.º 1
0
 public OrdersController(IStripeChargesService stripeChargesService, IStripeService stripeService, IConfiguration config, ILogger <OrdersController> logger, IOrderService orderService, IErrorHandlerService errorService)
 {
     _config               = config;
     _logger               = logger;
     _stripeService        = stripeService;
     _orderService         = orderService; _errorService = errorService;
     _stripeChargesService = stripeChargesService;
 }
Exemplo n.º 2
0
 public PaymentsController(IStripeChargesService stripeChargesService, IStripeCustomerService stripeCustomerService, IUserService userService, ICompanyService companyService, IStripeService stripeService, IConfiguration config, ILogger <PaymentsController> logger, IErrorHandlerService errorService, IOrderService orderService)
 {
     _config                = config;
     _logger                = logger;
     _errorService          = errorService;
     _orderService          = orderService;
     _stripeService         = stripeService;
     _companyService        = companyService;
     _userService           = userService;
     _stripeCustomerService = stripeCustomerService;
     _stripeChargesService  = stripeChargesService;
 }
Exemplo n.º 3
0
 public SummariesController(IStripeChargesService stripeChargesService)
 {
     _stripeChargesService = stripeChargesService;
 }