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