public GamePeriod(Game game, byte number, Score score) { this.game = game; this.number = number; this.score = score; }
public void AddPeriodScore(byte number, Score score) { periods.Add(new GamePeriod(this, number, score)); }