Пример #1
0
 public LayoutController(ICategoryLayoutService categoryLayoutService,
                         IBrandLayoutService brandLayoutService,
                         ICollectionLayoutService collectionLayoutService,
                         IProductLayoutService productLayoutService,
                         IPageLayoutService pageLayoutService)
 {
     _categoryLayoutService   = categoryLayoutService;
     _brandLayoutService      = brandLayoutService;
     _collectionLayoutService = collectionLayoutService;
     _productLayoutService    = productLayoutService;
     _pageLayoutService       = pageLayoutService;
 }
Пример #2
0
 public PageViewModelService(IPageLayoutService pageLayoutService, IPageService pageService, ISlugService slugService, ITranslationService translationService,
                             ICustomerActivityService customerActivityService, IStoreService storeService, ILanguageService languageService, IDateTimeService dateTimeService, SeoSettings seoSettings)
 {
     _pageLayoutService       = pageLayoutService;
     _pageService             = pageService;
     _slugService             = slugService;
     _translationService      = translationService;
     _customerActivityService = customerActivityService;
     _storeService            = storeService;
     _languageService         = languageService;
     _dateTimeService         = dateTimeService;
     _seoSettings             = seoSettings;
 }
Пример #3
0
 public ImpressumPageController(IPageLayoutService pageLayoutService)
 {
     _pageLayoutService = pageLayoutService;
 }
Пример #4
0
 public FooterController(IPageLayoutService pageLayoutService)
 {
     _pageLayoutService = pageLayoutService;
 }
 public PageLayoutController(IPageLayoutService pageLayoutService, IUserService userService)
 {
     this.pageLayoutService = pageLayoutService;
     this.userService       = userService;
 }
Пример #6
0
 public SearchService(IPageLayoutService pageLayoutService)
 {
     _pageLayoutService = pageLayoutService;
 }
 public GetPageLayoutViewPathHandler(
     IPageLayoutService pageLayoutService)
 {
     _pageLayoutService = pageLayoutService;
 }
Пример #8
0
 public PageController(IPageLayoutService pageLayoutService, IRendererService rendererService)
 {
     _pageLayoutService = pageLayoutService;
     _rendererService = rendererService;
 }
Пример #9
0
 public MailService(IConfigurationService configurationService, IImageService imageService, IPageLayoutService pageLayoutService)
 {
     _configurationService = configurationService;
     _imageService         = imageService;
     _pageLayoutService    = pageLayoutService;
 }
Пример #10
0
 public HeaderController(IPageLayoutService pageLayoutService)
 {
     _pageLayoutService = pageLayoutService;
 }
Пример #11
0
 public BasePageController()
 {
     _themeService      = (IThemeService)DependencyResolver.Current.GetService(typeof(IThemeService));
     _pageLayoutService = (IPageLayoutService)DependencyResolver.Current.GetService(typeof(IPageLayoutService));
 }
Пример #12
0
 public PageController(IPageLayoutService pageLayoutService, IRendererService rendererService)
 {
     _pageLayoutService = pageLayoutService;
     _rendererService   = rendererService;
 }