Esempio n. 1
0
 public CountryController(CountryService countryService)
 {
     _countryService = countryService;
 }
Esempio n. 2
0
 public CustomerController(CustomerService customerService, CountryService countryService, OrderService orderService)
 {
     _customerService = customerService;
     _countryService = countryService;
     _orderService = orderService;
 }