Example #1
0
 public ExtPriceSettingsController(IExtPricesSettingsService extPricesSettingsService,
                                   IConvertService convertService, IExtPricesStatusService extPricesStatusService)
 {
     _extPricesSettingsService = extPricesSettingsService;
     _convertService           = convertService;
     _extPricesStatusService   = extPricesStatusService;
 }
Example #2
0
 public AssetPairSourceTypeService(ISettingsRootService settingsRootService,
                                   IExtPricesSettingsService extPricesSettingsService, ICrossRateCalcInfosService crossRateCalcInfosService)
 {
     _settingsRootService       = settingsRootService;
     _extPricesSettingsService  = extPricesSettingsService;
     _crossRateCalcInfosService = crossRateCalcInfosService;
 }
Example #3
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;
 }
 public PrimaryExchangeService(IAlertService alertService, IHedgingPreferenceService hedgingPreferenceService,
                               IExtPricesSettingsService extPricesSettingsService, IStopTradesService stopTradesService,
                               IConvertService convertService)
 {
     _alertService             = alertService;
     _hedgingPreferenceService = hedgingPreferenceService;
     _extPricesSettingsService = extPricesSettingsService;
     _stopTradesService        = stopTradesService;
     _convertService           = convertService;
 }
Example #6
0
 public ExtPriceExchangesController(IExtPricesSettingsService extPricesSettingsService, IConvertService convertService)
 {
     _extPricesSettingsService = extPricesSettingsService;
     _convertService           = convertService;
 }
 public HedgingPreferenceService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
 public TransformOrderbookService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
Example #9
0
 public OutdatedOrderbooksService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
Example #10
0
 public DisabledOrderbooksService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
Example #11
0
 public AggregateOrderbookService(IExtPricesSettingsService extPricesSettingsService, ISystem system)
 {
     _extPricesSettingsService = extPricesSettingsService;
     _system = system;
 }