public Bet(BetTypeValue betType, int amount) { BetType = betType; Amount = amount; }
public Result BetSingle(BetTypeValue betTypeValue, int betAmount) { return BetSingle(new Bet(betTypeValue, betAmount)); }