Beispiel #1
0
 // you'll use one of these two functions
 public void LoadFromFile(string file, Pharmacy pharm)
 {
     Convert(CSVService.ReadFile(file), pharm);
 }
Beispiel #2
0
 // you'll use one of these two functions
 public List <Patient> UploadPatients(string file, Pharmacy pharm)
 {
     return(Convert(CSVService.ReadFile(file), pharm));
 }