using BethanysPieShopHRM.Shared.Domain; namespace BethanysPieShopHRM.Api.Models { public interface ICountryRepository { IEnumerable GetAllCountries(); Country GetCountryById(int countryId); } }