예제 #1
0
 public List <DoctorDTO> GetDoctors()
 {
     try
     {
         return(_repScheduleRepository.GetDoctorDetails());
     }
     catch (Exception)
     {
         throw;
     }
 }
예제 #2
0
 public List <Doctor> GetDoctors()
 {
     try
     {
         _log.Info("Getting list of doctors");
         return(_repScheduleRepository.GetDoctorDetails());
     }
     catch (Exception e)
     {
         _log.Error("Error in getting RepScheduleProvider while getting list of doctors - " + e.Message);
         throw;
     }
 }
예제 #3
0
 public List <Doctor> GetDocters()
 {
     return(_repschedulerepository.GetDoctorDetails());
 }