Esempio n. 1
0
        // GET: Appointment
        public ActionResult Index()
        {
            var appointment = new AppointmentViewModel()
            {
                PhysicianListItems = _appointmentServices.GetAllDoctors()
            };

            return(View(appointment));
        }