public override void RenderAsHtml()
 {
     Name = "Career Reports";
      RosterReport = new NFLRosterReport( Season );
      RosterReport.LoadAfc();
      RosterReport.PlayerReports();
 }
Example #2
0
        public void TestPredictionsFor2013()
        {
            const string theSeason = "2013";
            var          rr        = new NFLRosterReport(theSeason);

            rr.SeasonProjection("Spread", theSeason, "0", Utility.StartOfSeason(theSeason));
            Assert.IsTrue(File.Exists(rr.FileOut), string.Format("Cannot find {0}", rr.FileOut));
        }
        public override void RenderAsHtml()
        {
            var body = new StringBuilder();

            RosterReport = new NFLRosterReport(Season);
            RosterReport.LoadAfc();
            RosterReport.DeletePlayerReports(body);

            OutputReport(body.ToString());
            Finish();
        }