partial void IndexOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, CruisinForChildren.Models.RegistrationModel model, bool captchaValid, string captchaErrorMessage);
 public override System.Web.Mvc.ActionResult Index(CruisinForChildren.Models.RegistrationModel model, bool captchaValid, string captchaErrorMessage)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Index);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "captchaValid", captchaValid);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "captchaErrorMessage", captchaErrorMessage);
     IndexOverride(callInfo, model, captchaValid, captchaErrorMessage);
     return callInfo;
 }
 partial void ExternalLoginConfirmationOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, CruisinForChildren.Models.RegisterExternalLoginModel model, string returnUrl);
 public override System.Web.Mvc.ActionResult ExternalLoginConfirmation(CruisinForChildren.Models.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;
 }
 partial void ManageOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, CruisinForChildren.Models.LocalPasswordModel model);
 public override System.Web.Mvc.ActionResult Manage(CruisinForChildren.Models.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;
 }
 public override System.Web.Mvc.ActionResult Manage(CruisinForChildren.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;
 }
 partial void ManageOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, CruisinForChildren.Controllers.AccountController.ManageMessageId? message);
 public override System.Web.Mvc.ActionResult Register(CruisinForChildren.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;
 }
 partial void RegisterOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, CruisinForChildren.Models.RegisterModel model);
 partial void LoginOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, CruisinForChildren.Models.LoginModel model, string returnUrl);