Example #1
0
 public MonthlyCalendarQuery(DateTime from, DateTime to)
 {
     Occurrences = new OccurrencesQuery(from.AsMonthDate(), to.AsMonthDate());
 }
 public DailyCalendarQuery(DateTime from, DateTime to)
 {
     Occurrences = new OccurrencesQuery(from.Date, to.Date);
 }