Files
2026-03-22 00:29:34 +01:00

11 lines
259 B
C#

using BethanysPieShopHRM.Shared.Domain;
namespace BethanysPieShopHRM.Api.Models
{
public interface IJobCategoryRepository
{
IEnumerable<JobCategory> GetAllJobCategories();
JobCategory GetJobCategoryById(int jobCategoryId);
}
}