Example #1
0
        // GET: Home
        public ActionResult Index()
        {
            PezeshkPlusEntities db = new PezeshkPlusEntities();
            List <USP_SEL_Top6MedicalFields_Result> top6MedicalFields = db.USP_SEL_Top6MedicalFields().ToList();

            ViewBag.Top6MedicalFields = top6MedicalFields;
            List <USP_SEL_Top3Articles_Result> top3News = db.USP_SEL_Top3Articles().ToList();

            ViewBag.Top3News = top3News;

            Search model = new Search();

            return(View(model));
        }