Пример #1
0
 public static IEnumerable <Line> ByMonth(this IEnumerable <Line> q, Month month)
 {
     return(ByMonth(q, month.Date));
 }
Пример #2
0
 public static IQueryable <Line> ByMonth(this IQueryable <Line> q, Month month)
 {
     return(ByMonth(q, month.Date));
 }