Esempio n. 1
0
        public void PdSnippet(NflTeam t)
        {
            FileOut = string.Format("{0}\\PassDef\\PD-{1}.htm", RootPath(t.Season), t.TeamCode);
             var h = new HtmlFile(FileOut,
                                   string.Format(" {2} Pass Defense Unit as of {0}  Week {1}",
                                                 DateTime.Now.ToString("dd MMM yy"), Utility.CurrentWeek(), t.NameOut()));

             h.AddToBody(HeaderPd(t));
             h.AddToBody(t.PdReport());
             h.Render();
        }