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