public ReportController(IReportService reportService, IOrderAnalyticsService orderAnalyticsService)
 {
     _reportService         = reportService;
     _orderAnalyticsService = orderAnalyticsService;
 }
 public ReportService(IChartService chartService, IOrderAnalyticsService orderAnalyticsService, EcommerceSettings ecommerceSettings)
 {
     _chartService          = chartService;
     _orderAnalyticsService = orderAnalyticsService;
     _ecommerceSettings     = ecommerceSettings;
 }
Beispiel #3
0
 public ReportService(IChartService chartService, IOrderAnalyticsService orderAnalyticsService, EcommerceSettings ecommerceSettings)
 {
     _chartService = chartService;
     _orderAnalyticsService = orderAnalyticsService;
     _ecommerceSettings = ecommerceSettings;
 }