@Override public Team obtainTeamById(int id) { return teamDAO.getTeamById(id); }
@Transactional public void saveTeam(Team t) { teamDAO.saveTeam(t); }