コード例 #1
0
ファイル: NflSeason.cs プロジェクト: Quarterback16/Tycoon.API
        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);
        }
コード例 #2
0
ファイル: NflSeason.cs プロジェクト: Quarterback16/RosterLib
        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);
        }