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