示例#1
0
 public LanguagePageService(
     ICountryPageService countryPageService,
     IPageService pageService,
     IProfileLogger profileLogger)
 {
     _countryPageService = countryPageService;
     _pageService        = pageService;
     _profileLogger      = profileLogger;
 }
示例#2
0
 public SharedController(
     ICountryPageService countryPageService,
     IGoogleAnalyticsService googleAnalyticsService,
     ILanguagePageService languagePageService)
 {
     _countryPageService     = countryPageService;
     _googleAnalyticsService = googleAnalyticsService;
     _languagePageService    = languagePageService;
 }
示例#3
0
 public ConfigPageService(
     ICountryPageService countryPageService,
     ILanguagePageService languagePageService,
     IProfileLogger profileLogger,
     IUmbracoHelper umbracoHelper)
 {
     _countryPageService  = countryPageService;
     _languagePageService = languagePageService;
     _profileLogger       = profileLogger;
     _umbracoHelper       = umbracoHelper;
 }