Ejemplo n.º 1
0
        public ActionResult RightsList(SearchRightsModel search)
        {
            var model = UserBLL.GetRightsList(search.PlatformType, search.RightsType, search.RightsId, search.SearchKeWord);

            Session["SearchRightsModel"] = search;
            return PartialView("_List", model);
        }
Ejemplo n.º 2
0
 public ActionResult Index()
 {
     var search = new SearchRightsModel()
     {
         PlatformType = Utility.CommonHelper.To<int>(PlatformType.Manager)
     };
     return View(search);
 }