11 lines
235 B
C#
11 lines
235 B
C#
using BethanysPieShopHRM.Shared.Domain;
|
|
|
|
namespace BethanysPieShopHRM.Api.Models
|
|
{
|
|
public interface ICountryRepository
|
|
{
|
|
IEnumerable<Country> GetAllCountries();
|
|
Country GetCountryById(int countryId);
|
|
}
|
|
}
|