public void Execute()
        {
            _orderItem.Update(_orderItemId, _quantity);
            string total = _orderItem.GetTotalPrice(_orderId);

            _order.UpdateTotal(_orderId, total);
        }
        public void Execute()
        {
            string total = _orderItem.GetTotalPrice(_order_id);

            _order.Insert(_user_id, total);
            string last_order_id = _order.LastOrderID();

            _orderItem.Update(last_order_id);
        }
        public void Execute()
        {
            _orderItem.Delete(_id);
            string total = "0";

            if (_count > 2)
            {
                total = _orderItem.GetTotalPrice(_orderId);
            }
            _order.UpdateTotal(_orderId, total);
        }