Example #1
0
 public LoginController(IUserInterface user, ICustomersInterface customers)
 {
     _user      = user;
     _customers = customers;
 }
Example #2
0
 public CustomersController(ICustomersInterface customers)
 {
     _customers = customers;
 }