private County GetCounty(Boolean refresh) { if (_county.IsNull() || refresh) { _county = GeographicManagerTest.GetCounty(); } return(_county); }
private Province GetProvince(Boolean refresh) { if (_province.IsNull() || refresh) { _province = GeographicManagerTest.GetProvince(); } return(_province); }
private CountyList GetCounties(Boolean refresh) { if (_counties.IsNull() || refresh) { _counties = GeographicManagerTest.GetAllCounties(); } return(_counties); }