示例#1
0
 public void SearchPatientData(int key)
 {
     searchpatients = gpd.GetPatient("patientinformation.csv", key);
 }
示例#2
0
 //Get Mailling address from the file
 public void GetMailingAddress(int key)
 {
     additionalinfo = gpd.GetPatient("mailingaddressinfo.csv", key);
 }
 //Get Mailling address from the file
 public void GetMailingAddress(string filename, int key)
 {
     additionalinfo = gpd.GetPatient(filename, key);
 }
示例#4
0
 //Overide method of GetBasicInformation
 public void GetBasicInformation(string filename, int key)
 {
     basicinfo = gpd.GetPatient(filename, key);
 }
示例#5
0
 //Get Basic Info Address from the file
 public void GetBasicInformation(int key)
 {
     basicinfo = gpd.GetPatient("patientadditionalinfo.csv", key);
 }