Exemplo n.º 1
0
 public StatGrid( NflSeason season, string statType, StatMaster statMaster )
 {
     Season = season;
      StatInFocus = statType;
      StatMaster = statMaster;
 }
Exemplo n.º 2
0
 public StatGrid( string season, string statType )
 {
     Season = new NflSeason( season );
      StatInFocus = statType;
      StatMaster = new StatMaster( "Stats", "stats.xml" );
 }
Exemplo n.º 3
0
 public StatGrid( string season )
 {
     Season = new NflSeason( season );
      StatMaster = new StatMaster("Stats", "stats.xml");
 }
Exemplo n.º 4
0
 public StatGrid(NflSeason season, string statType, StatMaster statMaster)
 {
     Season      = season;
     StatInFocus = statType;
     StatMaster  = statMaster;
 }
Exemplo n.º 5
0
 public StatGrid(string season, string statType)
 {
     Season      = new NflSeason(season);
     StatInFocus = statType;
     StatMaster  = new StatMaster("Stats", "stats.xml");
 }
Exemplo n.º 6
0
 public StatGrid(string season)
 {
     Season     = new NflSeason(season);
     StatMaster = new StatMaster("Stats", "stats.xml");
 }