private PokerHand GetHand(PlayingCard one, PlayingCard two, PlayingCard three, PlayingCard four, PlayingCard five)
        {
            OrderedCardSet cards = new OrderedCardSet(new List <PlayingCard> {
                one, two, three, four, five
            });
            PokerHand hand = HoldemHand.IdentitfyHand(cards);

            return(hand);
        }