diff --git a/BMA.EHR.Command.Service/Controllers/OrderController.cs b/BMA.EHR.Command.Service/Controllers/OrderController.cs index ab1fdc1b..c8f66538 100644 --- a/BMA.EHR.Command.Service/Controllers/OrderController.cs +++ b/BMA.EHR.Command.Service/Controllers/OrderController.cs @@ -2390,7 +2390,7 @@ namespace BMA.EHR.Command.Service.Controllers [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status500InternalServerError)] - public async Task> PostType18Async([FromBody] CreateCommandGroup11Request req) + public async Task> PostType18Async([FromBody] CreateCommandGroup14Request req) { try { @@ -2439,7 +2439,7 @@ namespace BMA.EHR.Command.Service.Controllers [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status500InternalServerError)] - public async Task> PutType18Async(Guid orderId, [FromBody] CreateCommandGroup11Request req) + public async Task> PutType18Async(Guid orderId, [FromBody] CreateCommandGroup14Request req) { try { diff --git a/BMA.EHR.Command.Service/Requests/CreateCommandGroup14Request.cs b/BMA.EHR.Command.Service/Requests/CreateCommandGroup14Request.cs new file mode 100644 index 00000000..74c8c79a --- /dev/null +++ b/BMA.EHR.Command.Service/Requests/CreateCommandGroup14Request.cs @@ -0,0 +1,33 @@ +namespace BMA.EHR.Command.Service.Requests +{ + public class CreateCommandGroup14Request + { + public Guid orderTypeValue { get; set; } + + public string orderTitle { get; set; } = string.Empty; + + public string orderNo { get; set; } = string.Empty; + + public int orderYear { get; set; } + + public DateTime orderDate { get; set; } + + public Guid orderBy { get; set; } + + public string orderByOrganizationName { get; set; } = string.Empty; + + public string signatoryBy { get; set; } = string.Empty; + + public string signatoryPosition { get; set; } = string.Empty; + + public string fault { get; set; } + + public string guiltyBasis { get; set; } + + public string conclusionFireNo { get; set; } + + public DateTime conclusionFireDate { get; set; } + + public string conclusionFireResolution { get; set; } + } +}