Files
aviq-second-boilerplate/Webshop.App/Services/IJobCategoryDataService.cs
T
2026-03-22 00:29:34 +01:00

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);
}
}