Exemplo n.º 1
0
        public void Constructor()
        {
            CountryManagerSingleThreadCache countryManager;

            countryManager = new CountryManagerSingleThreadCache();
            Assert.IsNotNull(countryManager);
        }
Exemplo n.º 2
0
 private CountryManagerSingleThreadCache GetCountryManager(Boolean refresh)
 {
     if (_countryManager.IsNull() || refresh)
     {
         _countryManager            = new CountryManagerSingleThreadCache();
         _countryManager.DataSource = new CountryDataSource();
     }
     return(_countryManager);
 }
Exemplo n.º 3
0
 public CountryManagerSingleThreadCacheTest()
 {
     _countryManager = null;
 }