Exemplo n.º 1
0
 public HomeController(
     ITranslationService translationService,
     GoogleAnalyticsSettings googleAnalyticsSettings,
     IWorkContext workContext,
     IGroupService groupService,
     IOrderReportService orderReportService,
     IProductsReportService productsReportService,
     ILogger logger,
     IGrandAuthenticationService authenticationService,
     IMediator mediator)
 {
     _translationService      = translationService;
     _googleAnalyticsSettings = googleAnalyticsSettings;
     _workContext             = workContext;
     _groupService            = groupService;
     _orderReportService      = orderReportService;
     _productsReportService   = productsReportService;
     _logger = logger;
     _authenticationService = authenticationService;
     _mediator = mediator;
 }
Exemplo n.º 2
0
 public ReportsController(IOrderService orderService,
                          IOrderReportService orderReportService,
                          IProductsReportService productsReportService,
                          ICustomerReportService customerReportService,
                          ICustomerReportViewModelService customerReportViewModelService,
                          IPermissionService permissionService,
                          IWorkContext workContext,
                          IPriceFormatter priceFormatter,
                          IProductService productService,
                          IProductAttributeFormatter productAttributeFormatter,
                          IStockQuantityService stockQuantityService,
                          ITranslationService translationService,
                          IStoreService storeService,
                          ICountryService countryService,
                          IVendorService vendorService,
                          IDateTimeService dateTimeService,
                          ISearchTermService searchTermService,
                          IGroupService groupService,
                          IOrderStatusService orderStatusService)
 {
     _orderService                   = orderService;
     _orderReportService             = orderReportService;
     _productsReportService          = productsReportService;
     _customerReportService          = customerReportService;
     _customerReportViewModelService = customerReportViewModelService;
     _permissionService              = permissionService;
     _workContext               = workContext;
     _priceFormatter            = priceFormatter;
     _productService            = productService;
     _productAttributeFormatter = productAttributeFormatter;
     _stockQuantityService      = stockQuantityService;
     _translationService        = translationService;
     _storeService              = storeService;
     _countryService            = countryService;
     _vendorService             = vendorService;
     _dateTimeService           = dateTimeService;
     _searchTermService         = searchTermService;
     _groupService              = groupService;
     _orderStatusService        = orderStatusService;
 }