示例#1
0
        public ActionResult LoadAppointNewPatientPartialView()
        {
            var patientAppointNew = new PatientAppointmentNewViewModel()
            {
                GenderDictionary   = _appointmentServices.GetAllGender(),
                AppointDate        = DateTime.Now,
                PhysicianListItems = _appointmentServices.GetAllDoctors()
            };

            return(PartialView("_AppointNewPatientPartialView", patientAppointNew));
        }