public override System.Web.Mvc.ActionResult Edit(WhoLends.ViewModels.LendViewModel viewModel)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Edit);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "viewModel", viewModel);
            EditOverride(callInfo, viewModel);
            return(callInfo);
        }
        public override System.Web.Mvc.ActionResult Create(WhoLends.ViewModels.LendViewModel lendVM)
        {
            var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Create);

            ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "lendVM", lendVM);
            CreateOverride(callInfo, lendVM);
            return(callInfo);
        }
 partial void EditOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, WhoLends.ViewModels.LendViewModel viewModel);
 partial void CreateOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, WhoLends.ViewModels.LendViewModel lendVM);