Esempio n. 1
0
 public CMSController(IApiCountryAll apiCountryAll, ICountryRepository countryRepository, IActivityHelper activityHelper, IUserRepository userRepository)
 {
     _apiCountryAll     = apiCountryAll;
     _countryRepository = countryRepository;
     _activityHelper    = activityHelper;
     _userRepository    = userRepository;
 }
 public CMSController(IApiCountryAll apiCountryAll, ICountryRepository countryRepository, ICurrencyRepository currencyRepository, ILanguageRepository languageRepository, ICountryLanguageMappingRepository countryLanguageMappingRepository, ICountryCurrencyMappingRepository countryCurrencyMappingRepository, IActivityHelper activityHelper)
 {
     _apiCountryAll      = apiCountryAll;
     _countryRepository  = countryRepository;
     _currencyRepository = currencyRepository;
     _languageRepository = languageRepository;
     _countryLanguageMappingRepository = countryLanguageMappingRepository;
     _countryCurrencyMappingRepository = countryCurrencyMappingRepository;
     _activityHelper = activityHelper;
 }