コード例 #1
0
        public ActionResult GetProductOrdersByOrderId(int orderId)
        {
            var filteredProductOrders = _productOrderRepository.GetAllByOrderId(orderId);

            return(Ok(filteredProductOrders));
        }