Ejemplo n.º 1
0
 public List <Patient> Patients()
 {
     DAO.PatientDAO p = new DAO.PatientDAO();
     return(p.Patients());
 }
Ejemplo n.º 2
0
 public void SavePatient(Patient p)
 {
     DAO.PatientDAO pd = new DAO.PatientDAO();
     pd.SavePatient(p);
 }