Ejemplo n.º 1
0
 public MatchedBet(IMatchedBetLayStakeCalculator stakeCalculator, IMatchedBetProfitCalculator profitCalculator)
 {
     this.backBet = new BackBet();
     this.layBet = new LayBet();
     this.LayStakeCalculator = stakeCalculator;
     this.ProfitCalculator = profitCalculator;
 }
Ejemplo n.º 2
0
 public MatchedBet(IMatchedBetLayStakeCalculator stakeCalculator, IMatchedBetProfitCalculator profitCalculator)
     : this()
 {
     this.LayStakeCalculator = stakeCalculator;
     this.ProfitCalculator = profitCalculator;
 }