示例#1
0
 public int ChangePassword(User user, string newPassword)
 {
     user.Password = PasswordEncryptor.EncryptPassword(user.Password);
     newPassword   = PasswordEncryptor.EncryptPassword(newPassword);
     return(context.ChangePassword(user, newPassword));
 }