public Task <Book> GetBookAsync(int id)
 {
     return(_httpClient.GetItemAsync($"{_booksUrl}/{id}"));
 }