コード例 #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;
 }