public override System.Web.Mvc.ActionResult Register(TicketDesk.Web.Client.Models.RegisterModel model)
        {
            var callInfo = new T4MVC_ActionResult(Area, Name, ActionNames.Register);

            callInfo.RouteValueDictionary.Add("model", model);
            return(callInfo);
        }
示例#2
0
        public override System.Web.Mvc.ActionResult Register(TicketDesk.Web.Client.Models.RegisterModel model)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Register);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
            RegisterOverride(callInfo, model);
            return(callInfo);
        }
示例#3
0
 partial void RegisterOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, TicketDesk.Web.Client.Models.RegisterModel model);