Inheritance: System.Web.Mvc.FileResult, IT4MVCActionResult
 public override System.Web.Mvc.FileResult SomeFileResultAction() {
     var callInfo = new T4MVC_FileResult(Area, Name, ActionNames.SomeFileResultAction);
     return callInfo;
 }
 public override System.Web.Mvc.FileResult GetAuthorizedFile(int projectid) {
     var callInfo = new T4MVC_FileResult(Area, Name, ActionNames.GetAuthorizedFile);
     callInfo.RouteValueDictionary.Add("projectid", projectid);
     return callInfo;
 }
 public override System.Web.Mvc.FileResult PrintEquipmentList(int stationid) {
     var callInfo = new T4MVC_FileResult(Area, Name, ActionNames.PrintEquipmentList);
     callInfo.RouteValueDictionary.Add("stationid", stationid);
     return callInfo;
 }
 public override System.Web.Mvc.FileResult GetDoc(int id) {
     var callInfo = new T4MVC_FileResult(Area, Name, ActionNames.GetDoc);
     callInfo.RouteValueDictionary.Add("id", id);
     return callInfo;
 }
        public override System.Web.Mvc.FileResult SomeFileResultAction()
        {
            var callInfo = new T4MVC_FileResult(Area, Name, ActionNames.SomeFileResultAction);

            return(callInfo);
        }