Ejemplo n.º 1
0
        public async Task <ActionResult> DeleteShipments([FromBody] List <ShipmentDataRequest> shipmentDataRequests)
        {
            ShipmentService      shipmentService      = new ShipmentService();
            ShipmentDataResponse shipmentDataResponse = shipmentService.DeleteShipments(shipmentDataRequests);

            return(Ok(shipmentDataResponse));
        }