Esempio n. 1
0
 private static TransactionSummary selectYear(TransactionHistory history)
 {
     return(history.year);
 }
Esempio n. 2
0
 private static TransactionSummary selectMonth(TransactionHistory history)
 {
     return(history.month);
 }
Esempio n. 3
0
 //
 // selector methods
 //
 private static TransactionSummary selectDay(TransactionHistory history)
 {
     return(history.day);
 }
Esempio n. 4
0
 internal YearTransactionSummary(TransactionHistory _history)
 {
     this.history = _history;
 }
Esempio n. 5
0
 internal MonthTransactionSummary(TransactionHistory _history)
 {
     this.history = _history;
 }
Esempio n. 6
0
 private void onNewWorld(object sender, EventArgs e)
 {
     _history = null;
 }