public SimulationTaskEvent(SimulationTask task, TimeSpan time, SubtypeType eventSubtype)
     : this(task, SimulationTime.FromTimeSpan(time), eventSubtype)
 {
 }
 public SimulationTaskEvent(SimulationTask task, SimulationTime time, SubtypeType eventSubtype)
 {
     this.task    = task;
     this.time    = time;
     this.subtype = eventSubtype;
 }