10 lines
200 B
C#
10 lines
200 B
C#
using PARR.DAL.Models.V1;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces
|
|
{
|
|
internal interface IJobCategoryService : IBaseService<V1_JobCategory>
|
|
{
|
|
}
|
|
}
|