Exemplo n.º 1
0
        private void createStartData()
        {
            Board = new ScoreBoard();
            HomeT = new TeamInMatch {
                Name = "team1", Country = "Ukraine", Ñoach = "Cool man", TeamScore = 0
            };
            AwayT = new TeamInMatch {
                Name = "team2", Country = "USA", Ñoach = "Cool man2", TeamScore = 0
            };

            NewMatch = new Match(1, HomeT, AwayT);
            Board.AddMatch(NewMatch);
        }