예제 #1
0
 public Lap(DateTime time, LapType lapType, string description)
 {
     this.time        = time;
     this.lapType     = lapType;
     this.description = description;
 }
예제 #2
0
 public Lap(DateTime time, LapType lapType)
 {
     this.time    = time;
     this.lapType = lapType;
 }