Example #1
0
 public SharedController(
     ICountryPageService countryPageService,
     IGoogleAnalyticsService googleAnalyticsService,
     ILanguagePageService languagePageService)
 {
     _countryPageService     = countryPageService;
     _googleAnalyticsService = googleAnalyticsService;
     _languagePageService    = languagePageService;
 }
Example #2
0
 public ConfigPageService(
     ICountryPageService countryPageService,
     ILanguagePageService languagePageService,
     IProfileLogger profileLogger,
     IUmbracoHelper umbracoHelper)
 {
     _countryPageService  = countryPageService;
     _languagePageService = languagePageService;
     _profileLogger       = profileLogger;
     _umbracoHelper       = umbracoHelper;
 }