Beispiel #1
0
 public Ranking(PointSystem system, Club[] clubs)
 {
     _system = system;
     _entries = new RankingEntry[clubs.Length];
     for (int i = 0; i < clubs.Length; i++)
         _entries[i] = new RankingEntry(clubs[i], system.InitialPoints);
 }
Beispiel #2
0
 public virtual void Increment(PointSystem.ITotal with)
 {
     this.points += ((PointSystemMock)with).points;
 }