10 lines
188 B
C#
10 lines
188 B
C#
using PARR.DAL.Models.V1;
|
|
using PARR.DAL.Services.Interfaces.Base;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.V1
|
|
{
|
|
public interface V1_IJobService : IBaseService<V1_Job>
|
|
{
|
|
}
|
|
}
|