Ejemplo n.º 1
0
        public ActionResult AllPatients()
        {
            var repo     = new PatientRepository();
            var patients = repo.AllPatients();

            return(View(patients));
        }