11 lines
259 B
C#
11 lines
259 B
C#
using BethanysPieShopHRM.Shared.Domain;
|
|
|
|
namespace BethanysPieShopHRM.Api.Models
|
|
{
|
|
public interface IJobCategoryRepository
|
|
{
|
|
IEnumerable<JobCategory> GetAllJobCategories();
|
|
JobCategory GetJobCategoryById(int jobCategoryId);
|
|
}
|
|
}
|