public ChangePasswordCommandHandler(IIdentityAccountService identityAccountService)
 {
     _identityAccountService = identityAccountService;
 }
예제 #2
0
 public AspNetIdentityUserStore(IIdentityAccountService accountService, IIdentityClaimService claimService)
 {
     this.AccountService = accountService;
     this.ClaimService   = claimService;
 }
예제 #3
0
 public RegisterCommandHandler(IIdentityAccountService identityAccountService)
 {
     _identityAccountService = identityAccountService;
 }
예제 #4
0
 public LoginCommandHandler(IIdentityAccountService identityAccountService)
 {
     _identityAccountService = identityAccountService;
 }