Beispiel #1
0
 public AccountService(AccioContext context, AuthenticationHistoryService authenticationHistoryService, AccountVerificationService accountVerificationService,
                       AccountRoleService accountRoleService, RoleService roleService)
 {
     _context = context;
     _authenticationHistoryService = authenticationHistoryService;
     _accountVerificationService   = accountVerificationService;
     _accountRoleService           = accountRoleService;
     _roleService = roleService;
 }
 public AuthenticationService(AccioContext context, AccountService accountService, AuthenticationHistoryService authenticationHistoryService)
 {
     _context        = context;
     _accountService = accountService;
     _authenticationHistoryService = authenticationHistoryService;
 }