예제 #1
0
 public void AddItem(InvestimentItem item)
 {
     InvestimentItems.Add(item);
     SetTotal();
 }
예제 #2
0
 private void SetTotal()
 {
     Total = InvestimentItems.Sum(x => x.Total);
 }