Example #1
0
 public Match(Match match)
 {
     this.ListeSet = new LinkedList<Set>(match.ListeSet);
     this.Score1 = new Score(match.Score1);
     this.Score2 = new Score(match.Score2);
 }
Example #2
0
 public Match()
 {
     this.ListeSet = new LinkedList<Set>();
     this.Score1 = new Score();
     this.Score2 = new Score();
 }
Example #3
0
 public Set(LinkedList<Jeu> listeJeu, Score score1, Score score2)
 {
     this.ListeJeu = new LinkedList<Jeu>(listeJeu);
     this.Score1 = new Score(score1);
     this.Score2 = new Score(score2);
 }
Example #4
0
 public Set(Set set)
 {
     this.ListeJeu = new LinkedList<Jeu>(set.ListeJeu);
     this.Score1 = set.Score1;
     this.Score2 = set.Score2;
 }
Example #5
0
 public Set()
 {
     this.ListeJeu = new LinkedList<Jeu>();
     this.Score1 = new Score();
     this.Score2 = new Score();
 }