Пример #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));
 }
Пример #2
0
 public PersonBiz()
 {
     svc = new PersonService.PersonServiceClient();
 }
Пример #3
0
 public DTO.ResponseService <DTO.UserProfile> Authentication(string userName, string password, bool IsOIC)
 {
     PersonService.PersonServiceClient svc = new PersonService.PersonServiceClient();
     return(svc.Authentication(userName, password, IsOIC, ""));
 }