예제 #1
0
 public void Add(NewHistoryItem item)
 {
     median = item.price;
     fresh  = false;
 }
예제 #2
0
 public SalesHistory(NewHistoryItem item) : this()
 {
     Add(item);
 }
예제 #3
0
 public BasicHistoryItem(NewHistoryItem rhs)
 {
     price = rhs.price;
 }