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