Files
parr_api/PARR.DAL/Services/Interfaces/IJobService.cs

10 lines
182 B
C#
Raw Normal View History

using PARR.DAL.Models.V1;
2023-06-01 16:08:25 +10:00
using PARR.DAL.Services.Interfaces.Base;
namespace PARR.DAL.Services.Interfaces
{
public interface IJobService : IBaseService<V1_Job>
2023-06-01 16:08:25 +10:00
{
}
}