public CountryFacade(ICountryService countryService, ICountryTranslationService typeTranslationService) { _countryService = countryService; _typeTranslationService = typeTranslationService; }
public CountryFacade(ICountryService countryService, IUnitOfWorkAsync unitOfWork, ICountryTranslationService typeTranslationService) : base(unitOfWork) { _countryService = countryService; _typeTranslationService = typeTranslationService; }