예제 #1
0
파일: MonthType.cs 프로젝트: joaofx/felice
 public override object Get(IDataReader rs, int index)
 {
     var column = (string) rs[index];
     var value = new Month(column);
     return value;
 }
예제 #2
0
파일: Month.cs 프로젝트: joaofx/felice
 public bool Equals(Month other)
 {
     return Equals(other.value, this.value);
 }