Ejemplo n.º 1
0
 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);
 }
Ejemplo n.º 2
0
 public CronTab(CronTime time, ITask task)
 {
     this.Set_Schedule(time);
     this.Set_Task(task);
 }
Ejemplo n.º 3
0
 public void Set_Schedule(CronTime time)
 {
     this._cron = time;
 }