Example #1
0
 public KnockoutRound(string name, Hour hour, List <GameDay> dates, List <TvOffset> offsets, bool twoLegs, GameDay initialisation, GameDay end, RandomDrawingMethod method, bool noRandomDrawing) : base(name, hour, dates, offsets, initialisation, end, twoLegs, 0)
 {
     _randomDrawingMethod = method;
     _noRandomDrawing     = noRandomDrawing;
 }
Example #2
0
 public InactiveRound(string name, Hour hour, GameDay initialisation, GameDay end) : base(name, hour, new List <GameDay>(), new List <TvOffset>(), initialisation, end, false, 0)
 {
     _ranking = null;
 }
 public ChampionshipRound(string name, Hour hour, List <GameDay> days, bool twoLegs, List <TvOffset> offsets, GameDay initialisation, GameDay end, int lastDaySameDay) : base(name, hour, days, offsets, initialisation, end, twoLegs, lastDaySameDay)
 {
 }