Example #1
0
 public AuthenService(
     IAccountService accountService,
     IAuthorityService authorityService,
     IAccountAuthorityService accountAuthorityService)
 {
     _accountService          = accountService;
     _authorityService        = authorityService;
     _accountAuthorityService = accountAuthorityService;
 }
Example #2
0
 public AuthenService(
     IEmployeeService employeeService,
     IAccountService accountService,
     IAuthorityService authorityService,
     IAccountAuthorityService accountAuthorityService)
 {
     _employeeService         = employeeService;
     _accountService          = accountService;
     _authorityService        = authorityService;
     _accountAuthorityService = accountAuthorityService;
 }