예제 #1
0
 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;
 }
예제 #2
0
 public CountryController(ICountryRepository countryRepository, ICurrencyRepository currencyRepository, ILanguageRepository languageRepository, ICountryLanguageMappingRepository countryLanguageMappingRepository, ICountryCurrencyMappingRepository countryCurrencyMappingRepository, IActivityHelper activityHelper, IFavouriteRepository favouriteRepository)
 {
     _countryRepository  = countryRepository;
     _currencyRepository = currencyRepository;
     _languageRepository = languageRepository;
     _countryLanguageMappingRepository = countryLanguageMappingRepository;
     _countryCurrencyMappingRepository = countryCurrencyMappingRepository;
     _activityHelper      = activityHelper;
     _favouriteRepository = favouriteRepository;
 }