/// <summary>
 /// Retrieves list of appointments by patient ID
 /// </summary>
 /// <param name="patientID">Patient ID to search</param>
 /// <returns>List of appointments for that patient ID</returns>
 public List <Appointment> GetAppointmentsByPatientID(int patientID)
 {
     return(appointmentDAL.GetAppointmentsByPatientID(patientID));
 }