public override System.Web.Mvc.ActionResult Edit(MyCMS.DomainClasses.Entities.Category model)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Edit);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
            EditOverride(callInfo, model);
            return(callInfo);
        }
        public override System.Web.Mvc.ActionResult Add(MyCMS.DomainClasses.Entities.Category category)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Add);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "category", category);
            AddOverride(callInfo, category);
            return(callInfo);
        }
 partial void EditOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MyCMS.DomainClasses.Entities.Category model);