Exemplo n.º 1
0
 public void TallyTeam( ICollection<NflTeam> teamList, string season, DateTime focusDate, string teamCode )
 {
     var team = new NflTeam( teamCode );  //  simple code constructor
     if ( thisSeasonOnly )
         team.LoadGames( team.TeamCode, season );
     else
         team.LoadPreviousRegularSeasonGames( team.TeamCode, season, focusDate );
     team.TallyStats();
     teamList.Add( team );
 }