public DashboardController(
     IDashboardOverviewService overviewService,
     IAuthorizationService authorizationService,
     IAllowedTenantService allowedTenantService
     )
 {
     this.overviewService      = overviewService;
     this.authorizationService = authorizationService;
     this.allowedTenantService = allowedTenantService;
 }
Esempio n. 2
0
 public DashboardOverviewService(
     IActiveTenantService activeTenantService,
     IAllowedTenantService allowedTenantService,
     ITopSalesService topSalesService
     )
 {
     this.allowedTenantService = allowedTenantService;
     this.activeTenantService  = activeTenantService;
     this.topSalesService      = topSalesService;
 }