public decimal GetTotalCost()
 => OrdersItems?.Sum(o => o.Quantity * o.MenuItem.Price) ?? 0;
 public IEnumerable <CartItem> GetItems()
 => OrdersItems?.Select(oi => new CartItem(oi.MenuItem, oi.Quantity));