public CustomerAuthController(ICustomerAuthService accountService, IMapper mapper, LogHandler logHandler)
 {
     _accountService = accountService;
     _mapper         = mapper;
     this.logHandler = logHandler;
 }
Esempio n. 2
0
 public CustomerAuthController(ICustomerAuthService customerAuthService)
 {
     _customerAuthService = customerAuthService;
 }