Esempio n. 1
0
 public PatientDTO GetPatientByMRN(string MRN)
 {
     return(PatientsAPI.GetPatientAsync(MRN));
 }
Esempio n. 2
0
 public async void DeleteAccount(string MRN)
 {
     await PatientsAPI.DeletePatientAsync(MRN);
 }
Esempio n. 3
0
 public async Task <IEnumerable <PatientDTO> > GetAllPatients()
 {
     return(await PatientsAPI.GetPatientsAsync());
 }
Esempio n. 4
0
 public async Task <bool> AddPatient(PatientDTO patient)
 {
     return(await PatientsAPI.SaveAsync(patient));
 }