Esempio n. 1
0
 public static IEnumerable <Line> ByMonth(this IEnumerable <Line> q, Month month)
 {
     return(ByMonth(q, month.Date));
 }
Esempio n. 2
0
 public static IQueryable <Line> ByMonth(this IQueryable <Line> q, Month month)
 {
     return(ByMonth(q, month.Date));
 }