public void TearDown()
 {
     gateway = null;
     repository = null;
 }
 public void Setup()
 {
     gateway = Mock.Create<IGeoGateway>();
     repository = new GeoEntityRepository(gateway);
 }