Ejemplo n.º 1
0
        public IActionResult GetCustomerOrder(Guid id)
        {
            var customerOrder = _customerOrderServices.GetOrder(id);

            if (customerOrder == null)
            {
                return(NotFound());
            }

            return(Ok(customerOrder));
        }