Ejemplo n.º 1
0
        public async Task <IActionResult> ShipmentFeedback(string shipmentCode, string status)
        {
            string code = await _Shipmentservice.ChangeDeliveryStatus(shipmentCode, status);

            return(Ok(await _Shipmentservice.GetShipmentAsync(code)));
        }