Пример #1
0
 public CustomerController(ICustomerService customerService, IAuthentyService authentyService)
 {
     _customerService = customerService;
     _authentyService = authentyService;
 }
Пример #2
0
 public AuthentyController(IAuthentyService authentyService, ICustomerService customerService)
 {
     _authentyService = authentyService;
     _customerService = customerService;
 }