public ActionResult RightsList(SearchRightsModel search) { var model = UserBLL.GetRightsList(search.PlatformType, search.RightsType, search.RightsId, search.SearchKeWord); Session["SearchRightsModel"] = search; return PartialView("_List", model); }
public ActionResult Index() { var search = new SearchRightsModel() { PlatformType = Utility.CommonHelper.To<int>(PlatformType.Manager) }; return View(search); }