using BethanysPieShopHRM.Shared.Domain; using System.Net.Http.Json; namespace Webshop.App.Services { public class CountryDataService : ICountryDataService { private readonly HttpClient _httpClient; public CountryDataService( HttpClient httpClient) { _httpClient = httpClient; } public async Task> GetCountries() { return await _httpClient.GetFromJsonAsync>("/api/country"); } public async Task GetCountryById(int countryId) { return await _httpClient.GetFromJsonAsync($"/api/country/{countryId}"); } } }