Files
parr_api/PARR.DAL/Services/Interfaces/Job/IJobAutoControlService.cs

10 lines
176 B
C#
Raw Normal View History

using PARR.DAL.Models.Job;
namespace PARR.DAL.Services.Interfaces.Job
{
public interface IJobAutoControlService
{
IQueryable<JobAutoControl> Get();
}
}