// GET: DoctorsList public ActionResult Index() { DoctorModel Model = new DoctorModel(); DoctorViewModel viewModel = new DoctorViewModel(Model.GetList()); return(View(viewModel.GetList())); }