public StatGrid( NflSeason season, string statType, StatMaster statMaster ) { Season = season; StatInFocus = statType; StatMaster = statMaster; }
public StatGrid( string season, string statType ) { Season = new NflSeason( season ); StatInFocus = statType; StatMaster = new StatMaster( "Stats", "stats.xml" ); }
public StatGrid( string season ) { Season = new NflSeason( season ); StatMaster = new StatMaster("Stats", "stats.xml"); }
public StatGrid(NflSeason season, string statType, StatMaster statMaster) { Season = season; StatInFocus = statType; StatMaster = statMaster; }
public StatGrid(string season, string statType) { Season = new NflSeason(season); StatInFocus = statType; StatMaster = new StatMaster("Stats", "stats.xml"); }
public StatGrid(string season) { Season = new NflSeason(season); StatMaster = new StatMaster("Stats", "stats.xml"); }