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