コード例 #1
0
 public CountryService(ICountryQueryRepository countryQueryRepository,
                       IMemoryCache cache,
                       GlobalSettings globalSettings)
 {
     _countryQueryRepository = countryQueryRepository;
     _cache          = cache;
     _globalSettings = globalSettings;
 }
コード例 #2
0
 public GetCountryCityQueryHandler(ICountryQueryRepository countryQueryRepository)
 {
     this.countryQueryRepository = countryQueryRepository;
 }
コード例 #3
0
 public GetCountryCitiesRequestHandler(ICountryQueryRepository countryQueryRepository)
 {
     this.countryQueryRepository = countryQueryRepository;
 }