コード例 #1
0
 public void SetStart(ScheduleEvent task, DateTime start)
 {
     task.Start = start;
 }
コード例 #2
0
 public void SetEnd(ScheduleEvent task, DateTime end)
 {
     task.End = end;
 }
コード例 #3
0
 public void Move(ScheduleEvent task, int offset)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public int IndexOf(ScheduleEvent task)
 {
     throw new NotImplementedException();
 }
コード例 #5
0
 public void Delete(ScheduleEvent task)
 {
     Tasks.Remove(task);
 }
コード例 #6
0
 public void Add(ScheduleEvent task)
 {
     Tasks.Add(task);
 }