public override System.Web.Mvc.ActionResult Register(NsTasks.Web.Ui1.Models.RegisterModel model) {
     var callInfo = new T4MVC_ActionResult(Area, Name, ActionNames.Register);
     callInfo.RouteValueDictionary.Add("model", model);
     return callInfo;
 }
 public override System.Web.Mvc.ActionResult ChangePassword(NsTasks.Web.Ui1.Models.ChangePasswordModel model) {
     var callInfo = new T4MVC_ActionResult(Area, Name, ActionNames.ChangePassword);
     callInfo.RouteValueDictionary.Add("model", model);
     return callInfo;
 }
 public override System.Web.Mvc.ActionResult Login(NsTasks.Web.Ui1.Models.LoginModel model, string returnUrl) {
     var callInfo = new T4MVC_ActionResult(Area, Name, ActionNames.Login);
     callInfo.RouteValueDictionary.Add("model", model);
     callInfo.RouteValueDictionary.Add("returnUrl", returnUrl);
     return callInfo;
 }