Exemple #1
0
        // GET: DoctorsList
        public ActionResult Index()
        {
            DoctorModel     Model     = new DoctorModel();
            DoctorViewModel viewModel = new DoctorViewModel(Model.GetList());

            return(View(viewModel.GetList()));
        }