示例#1
0
        public ActionResult ManageUniversityLevels()
        {
            SetViewBag(title: "مدیریت سطوح دانشگاه ها", menuItem: "ManageUniversityLevels");
            ViewBag.Scores = _indicatorService.Get(g => g.CountOfType == "p" + (int)IndicatorProfessorName.رتبه_دانشگاه_محل_تحصیل).Scores.OrderBy(o => o.Id).ToList();
            var model = Mapper.Map <List <Models.Mapping> >(_mappingService.GetMany(g => g.MappingType.Id == 4).ToList());

            return(View(model));
        }