Example #1
0
 public ReportsController(
     IBalanceIndicatorsReportService balanceIndicatorsReportService,
     IBalanceReportService balanceReportService,
     ISummaryReportService summaryReportService,
     IPositionReportService positionReportService)
 {
     _balanceIndicatorsReportService = balanceIndicatorsReportService;
     _balanceReportService           = balanceReportService;
     _summaryReportService           = summaryReportService;
     _positionReportService          = positionReportService;
 }
 public ReportsController(
     IPositionReportService positionReportService,
     IIndexReportService indexReportService,
     IRiskExposureReportService riskExposureReportService,
     IProfitLossReportService profitLossReportService)
 {
     _positionReportService     = positionReportService;
     _indexReportService        = indexReportService;
     _riskExposureReportService = riskExposureReportService;
     _profitLossReportService   = profitLossReportService;
 }