public void RemoveTask(PeriodicTask task)
 {
     _tasks.Remove(task);
 }
 public void AddTask(PeriodicTask task)
 {
     _tasks.Add(task);
 }