Exemplo n.º 1
0
 public MonthlyCalendarQuery(DateTime from, DateTime to)
 {
     Occurrences = new OccurrencesQuery(from.AsMonthDate(), to.AsMonthDate());
 }
Exemplo n.º 2
0
 public DailyCalendarQuery(DateTime from, DateTime to)
 {
     Occurrences = new OccurrencesQuery(from.Date, to.Date);
 }