public void Set_Schedule(int seconds, int minutes, int hours, int days, int months, int years, DateTimeKind kind) { this._cron = new CronTime(seconds, minutes, hours, days, months, years, kind); }
public CronTab(CronTime time, ITask task) { this.Set_Schedule(time); this.Set_Task(task); }
public void Set_Schedule(CronTime time) { this._cron = time; }