public ActionResult UpdateProductOrder(ProductOrder productOrderObject)
        {
            var updatedOrder = _productOrderRepository.UpdateProductOrder(productOrderObject.Id, productOrderObject.ProductId, productOrderObject.OrderId, productOrderObject.Quantity, productOrderObject.Shipped);

            return(Ok(updatedOrder));
        }