Example #1
0
        public (int row, int column) GetRowColumn(EnumHandCategory thisCategory)
        {
            var hand = GetScoreHand(thisCategory);

            return(hand.GetRowColumn());
        }
Example #2
0
 public ScoreHandCP GetScoreHand(EnumHandCategory thisCategory)
 {
     return(HandScores.Single(items => items.HandCategory == thisCategory));
 }
 public string GetText(EnumHandCategory thisCategory) => _model !.HandScores.Where(items => items.HandCategory == thisCategory).Select(items => items.HandData()).Single();
        public (int Row, int Column) GetRowColumn(EnumHandCategory ThisCategory)
        {
            var ThisHand = GetScoreHand(ThisCategory);

            return(ThisHand.GetRowColumn());
        }
 public DeckRegularDict <CribbageCard> GetCards(EnumHandCategory thisCategory)
 {
     return(_model !.HandScores.Where(items => items.HandCategory == thisCategory).Select(items => items.TempList).Single());
 }