maintenance unify document generation ui
This commit is contained in:
@@ -119,6 +119,12 @@ namespace Disco.Web.Areas.API.Controllers
|
||||
}
|
||||
[NonAction]
|
||||
[GeneratedCode("T4MVC", "2.0"), DebuggerNonUserCode]
|
||||
public virtual System.Web.Mvc.ActionResult Generate()
|
||||
{
|
||||
return new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Generate);
|
||||
}
|
||||
[NonAction]
|
||||
[GeneratedCode("T4MVC", "2.0"), DebuggerNonUserCode]
|
||||
public virtual System.Web.Mvc.ActionResult Delete()
|
||||
{
|
||||
return new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Delete);
|
||||
@@ -149,6 +155,7 @@ namespace Disco.Web.Areas.API.Controllers
|
||||
public readonly string UpdateScope = "UpdateScope";
|
||||
public readonly string UpdateJobSubTypes = "UpdateJobSubTypes";
|
||||
public readonly string BulkGenerate = "BulkGenerate";
|
||||
public readonly string Generate = "Generate";
|
||||
public readonly string Delete = "Delete";
|
||||
}
|
||||
|
||||
@@ -165,6 +172,7 @@ namespace Disco.Web.Areas.API.Controllers
|
||||
public const string UpdateScope = "UpdateScope";
|
||||
public const string UpdateJobSubTypes = "UpdateJobSubTypes";
|
||||
public const string BulkGenerate = "BulkGenerate";
|
||||
public const string Generate = "Generate";
|
||||
public const string Delete = "Delete";
|
||||
}
|
||||
|
||||
@@ -270,6 +278,15 @@ namespace Disco.Web.Areas.API.Controllers
|
||||
public readonly string DataIds = "DataIds";
|
||||
public readonly string InsertBlankPage = "InsertBlankPage";
|
||||
}
|
||||
static readonly ActionParamsClass_Generate s_params_Generate = new ActionParamsClass_Generate();
|
||||
[GeneratedCode("T4MVC", "2.0"), DebuggerNonUserCode]
|
||||
public ActionParamsClass_Generate GenerateParams { get { return s_params_Generate; } }
|
||||
[GeneratedCode("T4MVC", "2.0"), DebuggerNonUserCode]
|
||||
public class ActionParamsClass_Generate
|
||||
{
|
||||
public readonly string id = "id";
|
||||
public readonly string TargetId = "TargetId";
|
||||
}
|
||||
static readonly ActionParamsClass_Delete s_params_Delete = new ActionParamsClass_Delete();
|
||||
[GeneratedCode("T4MVC", "2.0"), DebuggerNonUserCode]
|
||||
public ActionParamsClass_Delete DeleteParams { get { return s_params_Delete; } }
|
||||
@@ -439,6 +456,19 @@ namespace Disco.Web.Areas.API.Controllers
|
||||
return callInfo;
|
||||
}
|
||||
|
||||
[NonAction]
|
||||
partial void GenerateOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, string id, string TargetId);
|
||||
|
||||
[NonAction]
|
||||
public override System.Web.Mvc.ActionResult Generate(string id, string TargetId)
|
||||
{
|
||||
var callInfo = new T4MVC_System_Web_Mvc_ActionResult(Area, Name, ActionNames.Generate);
|
||||
ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "id", id);
|
||||
ModelUnbinderHelpers.AddRouteValues(callInfo.RouteValueDictionary, "TargetId", TargetId);
|
||||
GenerateOverride(callInfo, id, TargetId);
|
||||
return callInfo;
|
||||
}
|
||||
|
||||
[NonAction]
|
||||
partial void DeleteOverride(T4MVC_System_Web_Mvc_ActionResult callInfo, string id, bool? redirect);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user