Exemple #1
0
 public NoDrawBet MakeBet(IMatch match, decimal betAmount, string uniqueID, DrawNotPossibleResults myBet)
 {
     return(new NoDrawBet(match, betAmount, uniqueID, myBet));
 }
Exemple #2
0
 //constructors
 public NoDrawBet(IMatch match, decimal betAmount, string uniqueID, DrawNotPossibleResults betOnResult)
     : base(match, betAmount, uniqueID)
 {
     this.BetOnResult = betOnResult;
 }