if(patient == null|| patient.getFirstName() == null
|| patient.getLastName() == null)
throw new InvalidPatientException(
"Patient Records Require Full Name");
PatientDAO pDAO = PatientDAOFactory.getPatientDAO();
PatientDTO newPatientRecord = pDAO.createPatient(patient);
return newPatientRecord;