public KeeperAnalyzer(TeamPlayerCollection<PlayerWithStats> teamPlayers,
                       LeagueDraftResultCollection draftResults,
                       bool allowKeepersFromPriorSeason)
 {
     _teamPlayers = teamPlayers;
     _draftResults = draftResults;
     _allowKeepersFromPriorSeason = allowKeepersFromPriorSeason;
 }
 public KeeperAnalyzer(LeagueTeamPlayerCollection<Player> leagueTeamPlayers, LeagueDraftResultCollection draftResults, bool allowKeepersFromPriorSeason)
 {
     _leagueTeamPlayers = leagueTeamPlayers;
     _draftResults = draftResults;
     _allowKeepersFromPriorSeason = allowKeepersFromPriorSeason;
 }