Ejemplo n.º 1
0
 public static void AddTeamToLeague(Team team)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 public Match(Team homeTeam, Team awayTeam, Score score, int id)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public Player(string firstName, string lastName, DateTime dateOfBirth, decimal salary, Team team)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
        private static void AddTeam(string name, string nickname, DateTime dateFounded)
        {
            Team team = new Team(name, nickname, dateFounded);

            League.AddTeamToLeague(team);

            Console.WriteLine($" -> {team.Name} was added to the league");
        }