// GET: Patients
        public ActionResult Index()
        {
            PatientModel patientModel = new PatientModel();
            var          patients     = patientModel.getPatientVms();

            return(View(patients));
        }