Example #1
0
 public OddCalculator(
     INBAContext dbContext,
     IUnitOfWork unitOfWork,
     IGetStatMethods getStatMethods,
     ISimulator simulator
     )
 {
     this._dbContext      = dbContext;
     this._unitOfWork     = unitOfWork;
     this._getStatMethods = getStatMethods;
     this._simulator      = simulator;
 }
Example #2
0
 public Predictor(
     INBAContext dbContext,
     IUnitOfWork unitOfWork,
     IGetStatMethods getStatMethods,
     ISimulator simulator,
     IStatScraper statScraper)
 {
     this._dbContext      = dbContext;
     this._unitOfWork     = unitOfWork;
     this._getStatMethods = getStatMethods;
     this._simulator      = simulator;
     this._statscraper    = statScraper;
 }
Example #3
0
 public Simulator(IStatCalculator statCalculator,
                  IGetStatMethods getStatMethods)
 {
     this._statCalculator = statCalculator;
     this._getStatMethods = getStatMethods;
 }