/// <summary> /// Finds the winner of the game. /// </summary> /// <returns>The result of the game.</returns> public GameResult GetResult() { var result = ResultChecker.GetResult(Dealer, Player); return(result); }