Ejemplo n.º 1
0
 public string ChangePassword(string newPassword)
 {
     try
     {
         var oRetMsg = oProfileRepository.ChangePatientPassword(new DoctorPasswordModel {
             doctorID = SessionHandler.UserInfo.Id, password = newPassword
         });
         return(oRetMsg.message);
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
 }