public Lap(DateTime time, LapType lapType, string description) { this.time = time; this.lapType = lapType; this.description = description; }
public Lap(DateTime time, LapType lapType) { this.time = time; this.lapType = lapType; }