/// <summary>
 ///
 /// </summary>
 /// <param name="dayInterval">The day(s) of the week (Sun thru Sat)</param>
 /// <param name="weekInterval">The week(s) in which the schedule recurs</param>
 /// <param name="quarterInterval">The quarter(s) in which the schedule recurs</param>
 /// <param name="monthOfOfQuarterInterval"></param>
 public ScheduleDayInQuarter(
     DayInterval dayInterval,
     WeekInterval weekInterval,
     QuarterInterval quarterInterval,
     MonthOfQuarterInterval monthOfOfQuarterInterval)
 {
     _dayInterval            = dayInterval;
     _weekInterval           = weekInterval;
     _monthOfQuarterInterval = monthOfOfQuarterInterval;
     _quarterInterval        = quarterInterval;
 }
Example #2
0
 public void SetQuarterlyInterval(QuarterInterval interval)
 {
     QuarterInterval = interval;
 }
Example #3
0
 public ScheduleBuilder DuringQuarter(QuarterInterval interval)
 {
     this.DuringQuarter((int)interval);
     return(this);
 }