Exemplo n.º 1
0
 public CountryService(ICountryRepository countryRepository, ICountryCurrencyRepository countryCurrencyRepository, ICountryLanguageService countryLanguageService)
 {
     _countryRepository         = countryRepository;
     _countryCurrencyRepository = countryCurrencyRepository;
     _countryLanguageService    = countryLanguageService;
 }
Exemplo n.º 2
0
 public CountryLanguagesController(ICountryLanguageService countryLanguageService, ILanguageService languageService, IMapper mapper)
 {
     _mapper = mapper;
     _countryLanguageService = countryLanguageService;
     _languageService        = languageService;
 }