Esempio n. 1
0
 public IpReportService(ICache cache,
                        IAPIRequestCreator apiRequestCreator,
                        IEventRegister eventRegister)
 {
     _eventRegister     = eventRegister;
     _cache             = cache;
     _apiRequestCreator = apiRequestCreator;
 }
Esempio n. 2
0
 public IpInfoService(ICache cache,
                      IAPIRequestCreator apiRequestCreator,
                      ICountryService countryService,
                      ICurrencyRateService currencyRateService)
 {
     _cache               = cache;
     _apiRequestCreator   = apiRequestCreator;
     _countryService      = countryService;
     _currencyRateService = currencyRateService;
 }
Esempio n. 3
0
 public CurrencyRateService(ICache cache, IAPIRequestCreator apiRequestCreator)
 {
     _cache             = cache;
     _apiRequestCreator = apiRequestCreator;
 }
Esempio n. 4
0
 public CountryService(ICache cache, IAPIRequestCreator apiRequestCreator)
 {
     _cache             = cache;
     _apiRequestCreator = apiRequestCreator;
 }