public MatchedBet(IMatchedBetLayStakeCalculator stakeCalculator, IMatchedBetProfitCalculator profitCalculator)
 {
     this.backBet = new BackBet();
     this.layBet = new LayBet();
     this.LayStakeCalculator = stakeCalculator;
     this.ProfitCalculator = profitCalculator;
 }
示例#2
0
 public MatchedBet(IMatchedBetLayStakeCalculator stakeCalculator, IMatchedBetProfitCalculator profitCalculator)
     : this()
 {
     this.LayStakeCalculator = stakeCalculator;
     this.ProfitCalculator = profitCalculator;
 }