public bool addPatient(Patient patient)
        {
            PatientDAO p = new PatientDAO();

            return(p.addPatient(patient));
        }