Beispiel #1
0
 public async Task <IdentityResult> ResetPassword(ResetPasswordViewModel resetPassword)
 {
     return(await _userManager.ResetPasswordAsync(resetPassword.UserId, resetPassword.Code, resetPassword.Password));
 }