Files
parr_api/PARR.DAL/Services/Interfaces/Job/IJobAutoControlService.cs
2025-12-08 14:23:08 +10:00

10 lines
176 B
C#

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