Ejemplo n.º 1
0
 /// <summary>
 /// delete a patient from the list
 /// </summary>
 /// <param name="data"></param>
 /// <returns></returns>
 public bool done(Data data)
 {
     DoctorPatient doctor = new DoctorPatient();
     return doctor.done(data);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// get a list of patients using staff id
 /// </summary>
 /// <param name="field"></param>
 /// <param name="value"></param>
 /// <param name="data"></param>
 /// <returns></returns>
 public Data list(String field, String value, Data data)
 {
     DoctorPatient doctor = new DoctorPatient();
     return doctor.list(field, value, data);
 }