コード例 #1
0
ファイル: RightsController.cs プロジェクト: xeon2007/EmePro
        public ActionResult RightsList(SearchRightsModel search)
        {
            var model = UserBLL.GetRightsList(search.PlatformType, search.RightsType, search.RightsId, search.SearchKeWord);

            Session["SearchRightsModel"] = search;
            return PartialView("_List", model);
        }
コード例 #2
0
ファイル: RightsController.cs プロジェクト: xeon2007/EmePro
 public ActionResult Index()
 {
     var search = new SearchRightsModel()
     {
         PlatformType = Utility.CommonHelper.To<int>(PlatformType.Manager)
     };
     return View(search);
 }