Example #1
0
 public CountryCacheDataSource(ICountryCache cache)
 {
     this.cache = cache;
 }
Example #2
0
 public CountryNetworkDataSource(ICountryProvider countryProvider, ICountryCache countryCache)
 {
     this.countryProvider = countryProvider;
     this.countryCache    = countryCache;
 }