Exemplo n.º 1
0
 public CustomerController(ICustomerService customerService, IAuthentyService authentyService)
 {
     _customerService = customerService;
     _authentyService = authentyService;
 }
Exemplo n.º 2
0
 public AuthentyController(IAuthentyService authentyService, ICustomerService customerService)
 {
     _authentyService = authentyService;
     _customerService = customerService;
 }