10 lines
176 B
C#
10 lines
176 B
C#
using PARR.DAL.Models.Job;
|
|
|
|
namespace PARR.DAL.Services.Interfaces.Job
|
|
{
|
|
public interface IJobAutoControlService
|
|
{
|
|
IQueryable<JobAutoControl> Get();
|
|
}
|
|
}
|