Exemplo n.º 1
0
 public ReportsController(
     IBalanceIndicatorsReportService balanceIndicatorsReportService,
     IBalanceReportService balanceReportService,
     ISummaryReportService summaryReportService,
     IPositionReportService positionReportService)
 {
     _balanceIndicatorsReportService = balanceIndicatorsReportService;
     _balanceReportService           = balanceReportService;
     _summaryReportService           = summaryReportService;
     _positionReportService          = positionReportService;
 }
 public FiatEquityStopLossService(
     IBalanceIndicatorsReportService balanceIndicatorsReportService,
     IAssetSettingsService assetSettingsService,
     IMarketMakerSettingsService marketMakerSettingsService,
     IAssetsServiceWithCache assetsServiceWithCache,
     IInstrumentService instrumentService,
     ILogFactory logFactory)
 {
     _balanceIndicatorsReportService = balanceIndicatorsReportService;
     _assetSettingsService           = assetSettingsService;
     _marketMakerSettingsService     = marketMakerSettingsService;
     _assetsServiceWithCache         = assetsServiceWithCache;
     _instrumentService = instrumentService;
     _log = logFactory.CreateLog(this);
 }