public ActionResult Details(int id)
        {
            var patient = patientDAO.DetailsPatient(id);

            return(View(patient));
        }