コード例 #1
0
 private County GetCounty(Boolean refresh)
 {
     if (_county.IsNull() || refresh)
     {
         _county = GeographicManagerTest.GetCounty();
     }
     return(_county);
 }
コード例 #2
0
 private Province GetProvince(Boolean refresh)
 {
     if (_province.IsNull() || refresh)
     {
         _province = GeographicManagerTest.GetProvince();
     }
     return(_province);
 }
コード例 #3
0
 private CountyList GetCounties(Boolean refresh)
 {
     if (_counties.IsNull() || refresh)
     {
         _counties = GeographicManagerTest.GetAllCounties();
     }
     return(_counties);
 }