partial void ExternalLoginConfirmationOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, Magisterka.Web.Models.ExternalLoginConfirmationViewModel model, string returnUrl);
public override System.Threading.Tasks.Task<System.Web.Mvc.ActionResult> ExternalLoginConfirmation(Magisterka.Web.Models.ExternalLoginConfirmationViewModel 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 System.Threading.Tasks.Task.FromResult(callInfo as ActionResult); }
partial void SendCodeOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, Magisterka.Web.Models.SendCodeViewModel model);
public override System.Threading.Tasks.Task<System.Web.Mvc.ActionResult> SendCode(Magisterka.Web.Models.SendCodeViewModel model) { var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.SendCode); ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model); SendCodeOverride(callInfo, model); return System.Threading.Tasks.Task.FromResult(callInfo as ActionResult); }
partial void ResetPasswordOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, Magisterka.Web.Models.ResetPasswordViewModel model);
partial void LoginOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, Magisterka.Web.Models.LoginViewModel model, string returnUrl);
public override System.Threading.Tasks.Task<System.Web.Mvc.ActionResult> ManageLogins(Magisterka.Web.Controllers.ManageController.ManageMessageId? message) { var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.ManageLogins); ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "message", message); ManageLoginsOverride(callInfo, message); return System.Threading.Tasks.Task.FromResult(callInfo as ActionResult); }
partial void ManageLoginsOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, Magisterka.Web.Controllers.ManageController.ManageMessageId? message);
partial void VerifyPhoneNumberOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, Magisterka.Web.Models.VerifyPhoneNumberViewModel model);