private void LoadDivisionList(string yearIn)
        {
            //Utility.Announce( string.Format( "LoadDivisionList: Loading {0} division List...", yearIn ) );
            var nfc = new NflConference("NFC", yearIn);

            ConferenceList.Add(nfc);
            LoadNfc(nfc);
            var afc = new NflConference("AFC", yearIn);

            ConferenceList.Add(afc);
            LoadAfc(afc);
        }
Exemple #2
0
        private void LoadDivisionList(string yearIn)
        {
            Logger.Trace($"LoadDivisionList: Loading {yearIn} division List...");
            var nfc = new NflConference("NFC", yearIn);

            ConferenceList.Add(nfc);
            LoadNfc(nfc);
            var afc = new NflConference("AFC", yearIn);

            ConferenceList.Add(afc);
            LoadAfc(afc);
        }