static IConvertedPokerAction ConvertedActionFrom(string sqlAction)
        {
            ActionTypes theWhat = PokerAction.GetActionWhatFromSql(sqlAction.Substring(0, 1));

            double parsedRatio;
            double theRatio = double.TryParse(sqlAction.Substring(1), out parsedRatio) ? parsedRatio : 1.0;

            return(new ConvertedPokerAction(theWhat, theRatio));
        }