Esempio n. 1
0
 public MonthSelector(Month current)
 {
     _current = current;
 }
Esempio n. 2
0
 public void Select(Month month)
 {
     Current = month;
 }
Esempio n. 3
0
 public bool Equals(Month other)
 {
     return(other != null &&
            other.MonthInYear == MonthInYear &&
            other.Year == Year);
 }