| | |
| | | /// <param name="groupPlate"></param> |
| | | /// <returns></returns> |
| | | [HttpPost, HttpGet, Route("DeleteGroupPlateAsync"), AllowAnonymous] |
| | | public Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate) |
| | | public async Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate) |
| | | { |
| | | return Service.DeleteGroupPlateAsync(groupPlate); |
| | | return await Service.DeleteGroupPlateAsync(groupPlate); |
| | | } |
| | | |
| | | [HttpPost, HttpGet, Route("GenerateOutboundTask"), AllowAnonymous] |
| | | public WebResponseContent GenerateOutboundTask([FromBody] GenerateOutTaskDto requestOut) |
| | | public async Task<WebResponseContent> GenerateOutboundTask([FromBody] GenerateOutTaskDto requestOut) |
| | | { |
| | | return Service.GenerateOutboundTask(requestOut); |
| | | return await Service.GenerateOutboundTask(requestOut); |
| | | } |
| | | |
| | | } |