public async Task ChangePasswordAsync(string userId, string currentPassword, string newPassword)
 {
     await userManager.ChangePasswordAsync(userId, currentPassword, newPassword);
 }