public override System.Threading.Tasks.Task<System.Web.Mvc.ActionResult> Index(DotNetAppStarterKit.SampleMvc.Models.ThingyModel model)
 {
     var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Index);
     ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "model", model);
     IndexOverride(callInfo, model);
     return System.Threading.Tasks.Task.FromResult(callInfo as ActionResult);
 }
 partial void IndexOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, DotNetAppStarterKit.SampleMvc.Models.ThingyModel model);