private County GetCounty(Boolean refresh)
 {
     if (_county.IsNull() || refresh)
     {
         _county = GeographicManagerTest.GetCounty();
     }
     return(_county);
 }