Exemplo n.º 1
0
 public AuthController(IBusinessUser authService, ITokenHelper tokenHelper, IBusinessCustomer customerService, IBusinessAccount accountService, IBusinessTransaction transactionService)
 {
     _authService        = authService;
     _tokenHelper        = tokenHelper;
     _customerService    = customerService;
     _accountService     = accountService;
     _transactionService = transactionService;
 }
 public CustomerController(IBusinessCustomer customerService)
 {
     _customerService = customerService;
 }
Exemplo n.º 3
0
 public CustomerController(IBusinessCustomer service)
 {
     _service = service;
 }