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; }
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; }