public static void AddTeamToLeague(Team team)
 {
     throw new NotImplementedException();
 }
 public Match(Team homeTeam, Team awayTeam, Score score, int id)
 {
     throw new NotImplementedException();
 }
 public Player(string firstName, string lastName, DateTime dateOfBirth, decimal salary, Team team)
 {
     throw new NotImplementedException();
 }
        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");
        }