示例#1
0
 public DTO.ResponseMessage <bool> ChangePassword(string userId, string oldPassword, string newPassword)
 {
     PersonService.PersonServiceClient svc = new PersonService.PersonServiceClient();
     return(svc.ChangePassword(userId, oldPassword, newPassword));
 }