protected void UpdateQuantity(PayItemViewModel item, int value) { item.Quantity += value; NotifyOfPropertyChange(() => CanCompletePayment); NotifyOfPropertyChange(() => Total); NotifyOfPropertyChange(() => TotalText); }
public void AddItem(PayItemViewModel item) { UpdateQuantity(item, 1); }
public void RemoveItem(PayItemViewModel item) { UpdateQuantity(item, -1); }