Пример #1
0
        public IActionResult Index()
        {
            PatientMockRepo db    = new PatientMockRepo();
            Patient         model = db.getPatient("Neha", "Mahalle", new DateTime(1986, 11, 28));

            return(View(model));
        }
        public ActionResult getPatientDetails()
        {
            PatientMockRepo db    = new PatientMockRepo();
            Patient         model = db.getPatient("Neha", "Mahalle", new DateTime(1986, 11, 28));

            return(View());
        }