partial void ExternalLoginConfirmationOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, KDCLLC.Identity.Services.ViewModels.Account.ExternalLoginConfirmationViewModel model, string returnUrl);
 public override System.Threading.Tasks.Task<System.Web.Mvc.ActionResult> ExternalLoginConfirmation(KDCLLC.Identity.Services.ViewModels.Account.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);
 }
 public override System.Threading.Tasks.Task<System.Web.Mvc.ActionResult> SendCode(KDCLLC.Identity.Services.ViewModels.Account.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 SendCodeOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, KDCLLC.Identity.Services.ViewModels.Account.SendCodeViewModel model);
 partial void ResetPasswordOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, KDCLLC.Identity.Services.ViewModels.Account.ResetPasswordViewModel model);
 public override System.Web.Mvc.JsonResult Save(KDCLLC.Web.ViewModels.SalesOrderViewModel salesOrderViewModel)
 {
     var callInfo = new T4MVC_System_Web_Mvc_JsonResult(Area, Name, ActionNames.Save);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "salesOrderViewModel", salesOrderViewModel);
     SaveOverride(callInfo, salesOrderViewModel);
     return callInfo;
 }
 partial void SaveOverride(T4MVC_System_Web_Mvc_JsonResult callInfo, KDCLLC.Web.ViewModels.SalesOrderViewModel salesOrderViewModel);