public MasterPageService(
     IConfigPageService configPageService,
     IProfileLogger profileLogger)
 {
     _configPageService = configPageService;
     _profileLogger     = profileLogger;
 }
Esempio n. 2
0
 public PageService(
     IProfileLogger profileLogger,
     IUmbracoContext umbracoContext)
 {
     _profileLogger  = profileLogger;
     _umbracoContext = umbracoContext;
 }
 public CountryPageService(
     IPageService pageService,
     IProfileLogger profileLogger,
     IUmbracoHelper umbracoHelper)
 {
     _pageService   = pageService;
     _profileLogger = profileLogger;
     _umbracoHelper = umbracoHelper;
 }
Esempio n. 4
0
 public GoogleAnalyticsService(
     IConfigPageService configPageService,
     IHttpContext httpContext,
     IProfileLogger profileLogger)
 {
     _configPageService = configPageService;
     _httpContext       = httpContext;
     _profileLogger     = profileLogger;
 }
Esempio n. 5
0
 public LanguagePageService(
     ICountryPageService countryPageService,
     IPageService pageService,
     IProfileLogger profileLogger)
 {
     _countryPageService = countryPageService;
     _pageService        = pageService;
     _profileLogger      = profileLogger;
 }
Esempio n. 6
0
 public ConfigPageService(
     ICountryPageService countryPageService,
     ILanguagePageService languagePageService,
     IProfileLogger profileLogger,
     IUmbracoHelper umbracoHelper)
 {
     _countryPageService  = countryPageService;
     _languagePageService = languagePageService;
     _profileLogger       = profileLogger;
     _umbracoHelper       = umbracoHelper;
 }
Esempio n. 7
0
 public ThemeService(
     ICultureInfo cultureInfo,
     IFileSystem fileSystem,
     IHttpServerUtility httpServerUtility,
     IProfileLogger profileLogger)
 {
     _cultureInfo       = cultureInfo;
     _fileSystem        = fileSystem;
     _httpServerUtility = httpServerUtility;
     _profileLogger     = profileLogger;
 }