using System.Net.Http.Json; using West.TelegramBot.ContentStore.Model; namespace West.TelegramBot.ContentStore.API; public class SomeRandomApi : ISomeRandomApi { private readonly HttpClient _client; public SomeRandomApi(HttpClient client) { _client = client; } public async Task GetAnimalAsync(string animalId) { return (await _client.GetFromJsonAsync( $"animal/{animalId}" ))!; } }