Ejemplo n.º 1
0
 public Lap(DateTime time, LapType lapType, string description)
 {
     this.time        = time;
     this.lapType     = lapType;
     this.description = description;
 }
Ejemplo n.º 2
0
 public Lap(DateTime time, LapType lapType)
 {
     this.time    = time;
     this.lapType = lapType;
 }