コード例 #1
0
 partial void CreateOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Web.Models.DiscussionVM.CreateDiscussionVM discussionVM);
コード例 #2
0
 public override System.Web.Mvc.ActionResult Create(MathHub.Web.Models.DiscussionVM.CreateDiscussionVM discussionVM)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Create);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "discussionVM", discussionVM);
     CreateOverride(callInfo, discussionVM);
     return callInfo;
 }
コード例 #3
0
 partial void ExternalLoginConfirmationOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Entity.Entity.RegisterExternalLoginModel model, string returnUrl);
コード例 #4
0
 public override System.Web.Mvc.ActionResult ExternalLoginConfirmation(MathHub.Entity.Entity.RegisterExternalLoginModel model, string returnUrl)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.ExternalLoginConfirmation);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "returnUrl", returnUrl);
     ExternalLoginConfirmationOverride(callInfo, model, returnUrl);
     return callInfo;
 }
コード例 #5
0
 partial void ManageOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Entity.Entity.LocalPasswordModel model);
コード例 #6
0
 public override System.Web.Mvc.ActionResult Manage(MathHub.Entity.Entity.LocalPasswordModel model)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Manage);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
     ManageOverride(callInfo, model);
     return callInfo;
 }
コード例 #7
0
 partial void ManageOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Web.Controllers.AccountController.ManageMessageId? message);
コード例 #8
0
 public override System.Web.Mvc.ActionResult Manage(MathHub.Web.Controllers.AccountController.ManageMessageId? message)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Manage);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "message", message);
     ManageOverride(callInfo, message);
     return callInfo;
 }
コード例 #9
0
 partial void RegisterOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Entity.Entity.RegisterModel model);
コード例 #10
0
 public override System.Web.Mvc.ActionResult Register(MathHub.Entity.Entity.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;
 }
コード例 #11
0
 partial void LoginOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Entity.Entity.LoginModel model, string returnUrl);
コード例 #12
0
 public override System.Web.Mvc.ActionResult AddHint(MathHub.Web.Models.ProblemVM.HintPostVM hintPostVm)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.AddHint);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "hintPostVm", hintPostVm);
     AddHintOverride(callInfo, hintPostVm);
     return callInfo;
 }
コード例 #13
0
 partial void AddHintOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Web.Models.ProblemVM.HintPostVM hintPostVm);
コード例 #14
0
 partial void AddAnswerOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Web.Models.ProblemVM.AnswerPostVM answerPostVm);
コード例 #15
0
 partial void CreateOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, MathHub.Web.Models.ProblemVM.CreateProblemVM problemVM);