コード例 #1
0
ファイル: Program.cs プロジェクト: MikeHook/FootyLinks
        private static void Test(string sourceFilePath)
        {
            HtmlDocument doc = new HtmlDocument();
            doc.Load(sourceFilePath);

            var playerExtractor = new PlayerExtractor(doc);
            int? squadNo = playerExtractor.GetSquadNumber();
            int? age = playerExtractor.GetPlayerAge();
            int? clubId = playerExtractor.GetCurrentClubSourceId();

            var clubDto = playerExtractor.GetCurrentClubDto();
        }