예제 #1
0
 public RaceSession(Weekend parentWeekend)
     : base(parentWeekend)
 {
     this.Laps      = new SessionLapCollection <RaceLap>(this);
     this.Positions = new RacePositionCollection();
     this.PitLaps   = new RacePitCollection();
     this.Yellows   = new YellowPhaseCollection();
 }
예제 #2
0
 public WeekendInfo(Weekend weekend)
 {
     this.Weekend = weekend;
 }
 public NonRaceSession(Weekend parentWeekend) : base(parentWeekend)
 {
     this.Positions = new NonRacePositionCollection();
     this.Laps      = new SessionLapCollection <NonRaceLap>(this);
 }
예제 #4
0
 public Session(Weekend parentWeekend)
 {
     this.Weekend = parentWeekend;
 }