public GoogleMapRoutes( HttpClient httpClient, GoogleMapConfig config) { this.httpClient = httpClient; this.config = config; }
public GoogleMapClient( HttpClient httpClient, IntegrationConfig config) { this.httpClient = httpClient; this.config = config.GoogleMap; this.Routes = new GoogleMapRoutes(this.httpClient, this.config); this.Places = new GoogleMapPlaces(this.httpClient, this.config); this.Hamilton = new GoogleMapHamilton(new GoogleMapRoutes(this.httpClient, this.config)); }