示例#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));
 }