Ejemplo n.º 1
0
 public void RemoveEntry(OrderEntry entry)
 {
     total = Decimal.MinValue;
     entries.Remove(entry);
 }
Ejemplo n.º 2
0
 public void AddEntry(OrderEntry entry)
 {
     total = Decimal.MinValue;
     entries.Add(entry);
 }