public PayPalPaymentProcessor(
     OrderService orderService,
     SettingService settingService)
 {
     _orderService = orderService;
     _settingsService = settingService;
 }
Beispiel #2
0
 public OrderController(OrderService orderService)
 {
     _orderService = orderService;
 }
Beispiel #3
0
 public CustomerController(CustomerService customerService, CountryService countryService, OrderService orderService)
 {
     _customerService = customerService;
     _countryService = countryService;
     _orderService = orderService;
 }