public Team(TeamDTO teamDTO, string source) { TeamID = teamDTO.TeamID; TeamName = teamDTO.TeamName; MinimumAge = teamDTO.MinimumAge; MinimumElo = teamDTO.MinimumElo; IsPrivate = teamDTO.IsPrivate; Description = teamDTO.Description; Country = teamDTO.Country; Language = teamDTO.Language; PlayedGame = teamDTO.PlayedGame; teamDB = TeamFactory.GetTeamDB(source); }