public OpenWeatherMapApiClient(
     HttpClient httpClient,
     IStringMapper <WeatherData> jsonResponseMapper,
     IHttpClientApiConfiguration apiConfiguration)
 {
     this.httpClient         = httpClient;
     this.jsonResponseMapper = jsonResponseMapper;
     this.apiConfiguration   = apiConfiguration;
 }
Exemplo n.º 2
0
 public Module(IStringMapper stringMapper)
 {
     mapper = stringMapper as ComposeStringMapper;
     
 }