示例#1
0
        public override System.Web.Mvc.ActionResult Index(long categoryId, int page, int count, DomainClasses.Enums.PSFilter filter, string keyword)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Index);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "categoryId", categoryId);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "page", page);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "count", count);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "filter", filter);
            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "keyword", keyword);
            IndexOverride(callInfo, categoryId, page, count, filter, keyword);
            return(callInfo);
        }
示例#2
0
 partial void IndexOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, long categoryId, int page, int count, DomainClasses.Enums.PSFilter filter, string keyword);