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