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