Ejemplo n.º 1
0
 public HomeController(
     IUserMessagesService userMessagesService,
     IOrdersService ordersService,
     IProductsService productsService,
     IHomePageSlidesService homePageSlidesService,
     IStringService stringService,
     IDistributedCache cache)
 {
     this.userMessagesService   = userMessagesService;
     this.ordersService         = ordersService;
     this.productsService       = productsService;
     this.homePageSlidesService = homePageSlidesService;
     this.stringService         = stringService;
     this.distributedCache      = cache;
 }
Ejemplo n.º 2
0
 public HomePageSlidesController(IHomePageSlidesService homePageSlidesService)
 {
     this.homePageSlidesService = homePageSlidesService;
 }