예제 #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);
 }
예제 #3
0
 //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);
 }