Пример #1
0
 //gets patient tests based on the patient id
 public static List <Test> GetPatientTests(string patientID)
 {
     return(InformationDAL.GetPatientTests(patientID));
 }
Пример #2
0
 //returns a list of appointments based on the patient id
 public static List <Appointment> GetPatientAppointments(string patientID)
 {
     return(InformationDAL.GetPatientAppointments(patientID));
 }
Пример #3
0
 //gets patient visit based on the patient id
 public static List <Visit> GetPatientVisits(string patientID)
 {
     return(InformationDAL.GetPatientVisits(patientID));
 }
Пример #4
0
 //returns the patient info based on the patient id
 public static Patient CurrentPatientInfo(string patientID)
 {
     return(InformationDAL.CurrentPatientInfo(patientID));
 }