示例#1
0
 public CountryFacade(ICountryService countryService, ICountryTranslationService typeTranslationService)
 {
     _countryService         = countryService;
     _typeTranslationService = typeTranslationService;
 }
示例#2
0
 public CountryFacade(ICountryService countryService, IUnitOfWorkAsync unitOfWork, ICountryTranslationService typeTranslationService) : base(unitOfWork)
 {
     _countryService         = countryService;
     _typeTranslationService = typeTranslationService;
 }