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