Exemplo n.º 1
0
 public Bet(BetTypeValue betType, int amount)
 {
     BetType = betType;
     Amount = amount;
 }
Exemplo n.º 2
0
 public Result BetSingle(BetTypeValue betTypeValue, int betAmount)
 {
     return BetSingle(new Bet(betTypeValue, betAmount));
 }