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