Example #1
0
        List <IHandHistoryParser> GetAllParsers()
        {
            var factory = new HandHistories.Parser.Parsers.Factory.HandHistoryParserFactoryImpl();

            return(new List <IHandHistoryParser>()
            {
                factory.GetFullHandHistoryParser(SiteName.Entraction),
                factory.GetFullHandHistoryParser(SiteName.FullTilt),
                factory.GetFullHandHistoryParser(SiteName.Pacific),
                factory.GetFullHandHistoryParser(SiteName.PartyPoker),
                factory.GetFullHandHistoryParser(SiteName.PokerStars),
                factory.GetFullHandHistoryParser(SiteName.OnGame),
                factory.GetFullHandHistoryParser(SiteName.Merge),
                factory.GetFullHandHistoryParser(SiteName.MicroGaming),
                factory.GetFullHandHistoryParser(SiteName.IPoker),
                factory.GetFullHandHistoryParser(SiteName.Winamax),
                factory.GetFullHandHistoryParser(SiteName.WinningPoker),
            });
        }
 List<IHandHistoryParser> GetAllParsers()
 {
     var factory = new HandHistories.Parser.Parsers.Factory.HandHistoryParserFactoryImpl();
     return new List<IHandHistoryParser>()
     {
         factory.GetFullHandHistoryParser(SiteName.Entraction),
         factory.GetFullHandHistoryParser(SiteName.FullTilt),
         factory.GetFullHandHistoryParser(SiteName.Pacific),
         factory.GetFullHandHistoryParser(SiteName.PartyPoker),
         factory.GetFullHandHistoryParser(SiteName.PokerStars),
         factory.GetFullHandHistoryParser(SiteName.OnGame),
         factory.GetFullHandHistoryParser(SiteName.Merge),
         factory.GetFullHandHistoryParser(SiteName.MicroGaming),
         factory.GetFullHandHistoryParser(SiteName.IPoker),
         factory.GetFullHandHistoryParser(SiteName.Winamax),
         factory.GetFullHandHistoryParser(SiteName.WinningPoker),
     };
 }