Ejemplo n.º 1
0
 public PayPalPaymentProcessor(
     OrderService orderService,
     SettingService settingService)
 {
     _orderService = orderService;
     _settingsService = settingService;
 }
Ejemplo n.º 2
0
 public OrderController(OrderService orderService)
 {
     _orderService = orderService;
 }
Ejemplo n.º 3
0
 public CustomerController(CustomerService customerService, CountryService countryService, OrderService orderService)
 {
     _customerService = customerService;
     _countryService = countryService;
     _orderService = orderService;
 }