12 lines
275 B
C#
12 lines
275 B
C#
using BethanysPieShopHRM.Shared.Domain;
|
|
|
|
namespace Webshop.App.Services
|
|
{
|
|
public interface IJobCategoryDataService
|
|
{
|
|
public Task<IEnumerable<JobCategory>> GetJobCategories();
|
|
public Task<JobCategory> GetJobCategoryById(int jobCategoryId);
|
|
|
|
}
|
|
}
|