Exemplo n.º 1
0
 public DrawBet MakeBet(IMatch match, decimal betAmount, string uniqueID, DrawPossibleResults myBet)
 {
     return(new DrawBet(match, betAmount, uniqueID, myBet));
 }
Exemplo n.º 2
0
 //constructors
 public DrawBet(IMatch match, decimal betAmount, string uniqueID, DrawPossibleResults betOnResult)
     : base(match, betAmount, uniqueID)
 {
     this.BetOnResult = betOnResult;
 }