Example #1
0
 public TestsController(ITestingHelperService testingHelperService, IMarketMakerService marketMakerService,
                        IAssetPairSourceTypeService assetPairSourceTypeService)
 {
     _testingHelperService       = testingHelperService;
     _marketMakerService         = marketMakerService;
     _assetPairSourceTypeService = assetPairSourceTypeService;
 }
Example #2
0
 public GenerateOrderbookService(
     IOrderbooksService orderbooksService,
     IDisabledOrderbooksService disabledOrderbooksService,
     IOutdatedOrderbooksService outdatedOrderbooksService,
     IOutliersOrderbooksService outliersOrderbooksService,
     IRepeatedProblemsOrderbooksService repeatedProblemsOrderbooksService,
     IExtPricesSettingsService extPricesSettingsService,
     IAlertService alertService,
     IPrimaryExchangeService primaryExchangeService,
     ITransformOrderbookService transformOrderbookService,
     IBestPricesService bestPricesService,
     ILog log,
     ITelemetryService telemetryService,
     ITestingHelperService testingHelperService,
     IStopTradesService stopTradesService,
     ISystem system,
     IAggregateOrderbookService aggregateOrderbookService)
 {
     _orderbooksService                 = orderbooksService;
     _disabledOrderbooksService         = disabledOrderbooksService;
     _outdatedOrderbooksService         = outdatedOrderbooksService;
     _outliersOrderbooksService         = outliersOrderbooksService;
     _repeatedProblemsOrderbooksService = repeatedProblemsOrderbooksService;
     _extPricesSettingsService          = extPricesSettingsService;
     _alertService              = alertService;
     _primaryExchangeService    = primaryExchangeService;
     _transformOrderbookService = transformOrderbookService;
     _bestPricesService         = bestPricesService;
     _log = log;
     _telemetryService     = telemetryService;
     _testingHelperService = testingHelperService;
     _stopTradesService    = stopTradesService;
     _system = system;
     _aggregateOrderbookService = aggregateOrderbookService;
 }