示例#1
0
 public async Task <NodeEntry> ShipmentCreatePublish([FromRoute] ShipmentCreatePublish shipmentCreatePublish)
 {
     return(await _shipmentsService.CreateShipmentPublish(
                shipmentCreatePublish.NodeId,
                shipmentCreatePublish.Body.Components,
                shipmentCreatePublish.Body.DateFrom.Value,
                shipmentCreatePublish.Body.Days,
                shipmentCreatePublish.Body.Note));
 }