Example #1
0
        public ActionResult Panel()
        {
            PezeshkPlusEntities db = new PezeshkPlusEntities();

            List <USP_SEL_NotActivatedComments_Result> notActivatedComments = db.USP_SEL_NotActivatedComments().ToList();

            ViewBag.NotActivatedComments = notActivatedComments;
            List <USP_SEL_NotActivatedDoctors_Result> notActivatedDoctors = db.USP_SEL_NotActivatedDoctors().ToList();

            ViewBag.NotActivatedDoctors = notActivatedDoctors;

            Search model = new Search();

            return(View(model));
        }