Esempio n. 1
0
 public ExtPricesStatusService(IPrimaryExchangeService primaryExchangeService,
                               IBestPricesService bestPricesService, IConvertService convertService)
 {
     _primaryExchangeService = primaryExchangeService;
     _bestPricesService      = bestPricesService;
     _convertService         = convertService;
 }
Esempio n. 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;
 }
 public OutliersOrderbooksService(
     IBestPricesService bestPricesService,
     IExtPricesSettingsService extPricesSettingsService,
     IPrimaryExchangeService primaryExchangeService)
 {
     _bestPricesService        = bestPricesService;
     _extPricesSettingsService = extPricesSettingsService;
     _primaryExchangeService   = primaryExchangeService;
 }