Ejemplo n.º 1
0
 public TennisGame1(string player1Name, string player2Name)
 {
     this.tennisPlayer1 = new TennisPlayer()
     {
         Name = player1Name
     };
     this.tennisPlayer2 = new TennisPlayer()
     {
         Name = player2Name
     };
 }
Ejemplo n.º 2
0
        public void WonPoint(string playerName)
        {
            TennisPlayer player = GetPlayer(playerName);

            player.Score++;
        }