Ejemplo n.º 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);
 }
Ejemplo n.º 2
0
 public MatchEndedEventArgs(Match match)
 {
     this.Match = new Match(match);
 }