public ActionResult Details(int id)
        {
            var doctor = doctorDAO.DetailsDoctor(id);

            return(View(doctor));
        }