public IActionResult Remove(int orderId)
        {
            ordersStorageInst.RemoveOrder(orderId);

            return(Ok());
        }