コード例 #1
0
 public ExtPriceSettingsController(IExtPricesSettingsService extPricesSettingsService,
                                   IConvertService convertService, IExtPricesStatusService extPricesStatusService)
 {
     _extPricesSettingsService = extPricesSettingsService;
     _convertService           = convertService;
     _extPricesStatusService   = extPricesStatusService;
 }
コード例 #2
0
 public AssetPairSourceTypeService(ISettingsRootService settingsRootService,
                                   IExtPricesSettingsService extPricesSettingsService, ICrossRateCalcInfosService crossRateCalcInfosService)
 {
     _settingsRootService       = settingsRootService;
     _extPricesSettingsService  = extPricesSettingsService;
     _crossRateCalcInfosService = crossRateCalcInfosService;
 }
コード例 #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;
 }
コード例 #4
0
 public OutliersOrderbooksService(
     IBestPricesService bestPricesService,
     IExtPricesSettingsService extPricesSettingsService,
     IPrimaryExchangeService primaryExchangeService)
 {
     _bestPricesService        = bestPricesService;
     _extPricesSettingsService = extPricesSettingsService;
     _primaryExchangeService   = primaryExchangeService;
 }
コード例 #5
0
 public PrimaryExchangeService(IAlertService alertService, IHedgingPreferenceService hedgingPreferenceService,
                               IExtPricesSettingsService extPricesSettingsService, IStopTradesService stopTradesService,
                               IConvertService convertService)
 {
     _alertService             = alertService;
     _hedgingPreferenceService = hedgingPreferenceService;
     _extPricesSettingsService = extPricesSettingsService;
     _stopTradesService        = stopTradesService;
     _convertService           = convertService;
 }
コード例 #6
0
 public ExtPriceExchangesController(IExtPricesSettingsService extPricesSettingsService, IConvertService convertService)
 {
     _extPricesSettingsService = extPricesSettingsService;
     _convertService           = convertService;
 }
コード例 #7
0
 public HedgingPreferenceService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
コード例 #8
0
 public TransformOrderbookService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
コード例 #9
0
 public OutdatedOrderbooksService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
コード例 #10
0
 public DisabledOrderbooksService(IExtPricesSettingsService extPricesSettingsService)
 {
     _extPricesSettingsService = extPricesSettingsService;
 }
コード例 #11
0
 public AggregateOrderbookService(IExtPricesSettingsService extPricesSettingsService, ISystem system)
 {
     _extPricesSettingsService = extPricesSettingsService;
     _system = system;
 }