/// <summary>
 /// Initializes a new instance of the <see cref="GoogleGisService"/> class.
 /// </summary>
 /// <param name="proxy">The proxy.</param>
 public GoogleGisService(IGisProxy proxy)
 {
     this.GisProxy = proxy;
 }
 public void TestInitialize()
 {
     this.GisProxy = Substitute.For<IGisProxy>();
 }