コード例 #1
0
        protected void UpdateQuantity(PayItemViewModel item, int value)
        {
            item.Quantity += value;

            NotifyOfPropertyChange(() => CanCompletePayment);
            NotifyOfPropertyChange(() => Total);
            NotifyOfPropertyChange(() => TotalText);
        }
コード例 #2
0
 public void AddItem(PayItemViewModel item)
 {
     UpdateQuantity(item, 1);
 }
コード例 #3
0
 public void RemoveItem(PayItemViewModel item)
 {
     UpdateQuantity(item, -1);
 }
コード例 #4
0
ファイル: PayViewModel.cs プロジェクト: edjo23/shop
 public void AddItem(PayItemViewModel item)
 {
     UpdateQuantity(item, 1);
 }
コード例 #5
0
ファイル: PayViewModel.cs プロジェクト: edjo23/shop
        protected void UpdateQuantity(PayItemViewModel item, int value)
        {
            item.Quantity += value;

            NotifyOfPropertyChange(() => CanCompletePayment);
            NotifyOfPropertyChange(() => Total);
            NotifyOfPropertyChange(() => TotalText);
        }
コード例 #6
0
ファイル: PayViewModel.cs プロジェクト: edjo23/shop
 public void RemoveItem(PayItemViewModel item)
 {
     UpdateQuantity(item, -1);
 }