11 lines
250 B
C#
11 lines
250 B
C#
using BethanysPieShopHRM.Shared.Domain;
|
|
|
|
namespace Webshop.App.Services
|
|
{
|
|
public interface ICountryDataService
|
|
{
|
|
public Task<IEnumerable<Country>> GetCountries();
|
|
public Task<Country> GetCountryById(int countryId);
|
|
}
|
|
}
|