示例#1
0
 public List <Appointment> GetAppointments()
 {
     try
     {
         patientDataLayer = new PatientDataLayer();
         return(patientDataLayer.GetAppointments());
     }
     catch (Exception e)
     {
         ExceptionHandler.PrintException(e, new StackTrace(true));
         throw e;
     }
 }