Example #1
0
 public PreFlopHandStrengthStatisticsViewModelImpl(
     IPreFlopStartingHandsVisualizerViewModel startingHandsVisualizerViewModel,
     IPreFlopHandStrengthStatistics preFlopHandStrengthStatistics,
     IPreFlopHandStrengthDescriber handStrengthDescriber,
     string columnHeaderTitle)
     : base(startingHandsVisualizerViewModel, preFlopHandStrengthStatistics, handStrengthDescriber, columnHeaderTitle)
 {
 }
        protected PreFlopHandStrengthStatisticsViewModel(
            IPreFlopStartingHandsVisualizerViewModel startingHandsVisualizerViewModel,
            IPreFlopHandStrengthStatistics preFlopHandStrengthStatistics,
            IPreFlopHandStrengthDescriber handStrengthDescriber,
            string columnHeaderTitle)
            : base(columnHeaderTitle)
        {
            _startingHandsVisualizerViewModel = startingHandsVisualizerViewModel;
            _handStrengthDescriber            = handStrengthDescriber;
            _preFlopHandStrengthStatistics    = preFlopHandStrengthStatistics;
            _preFlopHandStrengthStatistics.InitializeWith(UnraisedPotCallingRatios, RaisedPotCallingRatios, RaiseSizeKeys);

            MayVisualizeHands = true;
        }