private void RemoveFromOrder(OrderItem item)
 {
     CurrentOrder.Remove(item);
     OrderTotal -= item.Price;
 }