Пример #1
0
 public ResultsViewModel(Dictionary <string, TotalResultsObject> results, HUDStats hudStats, Filter filter)
 {
     this.Results  = results;
     Filters       = filter;
     Actions       = filter.ActionOptions;
     this.HUDStats = hudStats;
 }
Пример #2
0
        public PokerAnalyser(List <HandHistory> handHistories, string playerName, Filter f)
        {
            this.HandHistories = handHistories;
            this.HandHistories = FilterHandHistories(this.HandHistories, playerName, f);
            RangeChart         = new RangeChart(this.HandHistories, f, playerName);

            // GetStatsForRangeChart(RangeChart, playerName);
            this.HUDStats = new HUDStats(this.HandHistories, playerName);
        }