예제 #1
0
        public ActionResult PatientProfileView(string clinicname)
        {
            PatientModel model = new PatientModel();

            model.ClinicName = clinicname;
            List <PatientModel> listmodel = new List <PatientModel>();

            listmodel = model.GetPatientProfileData();
            return(View(listmodel));
        }