Esempio n. 1
0
 public CatalogController(IProductService productService,
                          ICatalogFunctionService catalogFunctionService,
                          ICatalogSectorService catalogSectorService,
                          IWebImageService webImageService)
 {
     _productService         = productService;
     _catalogFunctionService = catalogFunctionService;
     _catalogSectorService   = catalogSectorService;
     _webImageService        = webImageService;
 }
Esempio n. 2
0
 public HeaderViewComponent(ICatalogFunctionService catalogFunctionService,
                            ICatalogSectorService catalogSectorService,
                            ICategoryBlogService categoryBlogService,
                            IPageContentService pageContentService)
 {
     _catalogFunctionService = catalogFunctionService;
     _catalogSectorService   = catalogSectorService;
     _categoryBlogService    = categoryBlogService;
     _pageContentService     = pageContentService;
 }
Esempio n. 3
0
 public HomeController(IPostService postService,
                       IWebImageService webImageService,
                       ICatalogFunctionService catalogFunctionService,
                       ICatalogSectorService catalogSectorService,
                       ICategoryBlogService categoryBlogService)
 {
     _postService            = postService;
     _webImageService        = webImageService;
     _catalogFunctionService = catalogFunctionService;
     _catalogSectorService   = catalogSectorService;
     _categoryBlogService    = categoryBlogService;
 }
Esempio n. 4
0
 public CatalogFunctionController(ICatalogFunctionService catalogFunctionService)
 {
     _catalogFunctionService = catalogFunctionService;
 }