コード例 #1
0
ファイル: Ranking.cs プロジェクト: Bastienp/TP3-Dotnet
 private RankingEntry EntryFromClub(Club c)
 {
     foreach (RankingEntry entry in entries)
         if (entry.Club == c)
             return entry;
     return null;
 }
コード例 #2
0
ファイル: Ranking.cs プロジェクト: Bastienp/TP3-Dotnet
 public Ranking(PointSystem system, Club [] clubs)
 {
     this.system = system;
     this.entries=new RankingEntry[clubs.Length];
     for(int i=0; i<clubs.Length; i++)
         this.entries[i]=new RankingEntry(clubs[i], system.InitialPoints);
 }
コード例 #3
0
ファイル: ClubTest.cs プロジェクト: Bastienp/TP3-Dotnet
 public void ToStringTest()
 {
     Club target = new Club("Bordeaux");
     Assert.AreEqual("Bordeaux", target.ToString());
 }
コード例 #4
0
ファイル: Match.cs プロジェクト: Bastienp/TP3-Dotnet
 public Match(Club homeName, Club awayName)
 {
     this.home = homeName;
     this.away = awayName;
 }
コード例 #5
0
ファイル: Ranking.cs プロジェクト: Bastienp/TP3-Dotnet
 public RankingEntry(Club club, PointSystem.ITotal points)
 {
     this.club = club;
     this.points = points;
 }
コード例 #6
0
ファイル: Ranking.cs プロジェクト: Bastienp/TP3-Dotnet
 public PointSystem.ITotal GetPoints(Club club)
 {
     return EntryFromClub(club).Points;
 }