Esempio n. 1
0
    private static void InsertTeam(TeamCollection teams, string teamName)
    {
        var team = new Team(teamName);

        if (team.Name == null)
        {
            return;
        }
        teams.AddTeam(team);
    }