Files
aviq-second-boilerplate/BethanysPieShopHRM.Api/Models/ICountryRepository.cs
T
2026-03-22 00:29:34 +01:00

11 lines
235 B
C#

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