Esempio n. 1
0
 protected Team CreateTeam(string teamName, Division division, ITeamRepository teamRepository)
 {
     var team = teamRepository.LoadTeamByName(teamName);
     if (team == null)
     {
         teamRepository.SaveNewTeam(teamName, division);
         team = teamRepository.LoadTeamByName(teamName);
     }
     return team;
 }