public void AddTempCardsToCrib(DeckRegularDict <CribbageCard> thisList)
        {
            var thisScore = _model !.HandScores.Single(items => items.HandCategory == EnumHandCategory.Crib);

            thisList.UnhighlightObjects();
            thisScore.TempList.AddRange(thisList);
        }