private async Task <Ipos> GetIposFromResponseAsync(HttpResponseMessage response) { return(Ipos.FromJson(await response.Content.ReadAsStringAsync())); }
private Ipos GetIposFromResponse(HttpResponseMessage response) { return(Ipos.FromJson(response.Content.ReadAsStringAsync().Result)); }