コード例 #1
0
 public Schedule(int id, ScheduleActions action, ScheduleDays day, TimeSpan time, ScheduleRepeat repeat, int status)
 {
     this.id     = id;
     this.action = action;
     this.day    = day;
     this.time   = time;
     this.repeat = repeat;
     this.status = status;
 }
コード例 #2
0
 public Schedule(int id, ScheduleActions action, DateTime date, TimeSpan time, ScheduleRepeat repeat, int status)
 {
     this.id     = id;
     this.action = action;
     this.date   = date;
     this.time   = time;
     this.repeat = repeat;
     this.status = status;
 }