private void UpdateGrandTotal() { if (ItemOrdered.Count() != 0 || ItemOrdered != null) { GrandTotal = ItemOrdered.Sum(item => item.TotalAmount); } }