14 lines
455 B
C#
14 lines
455 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Models.Job;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.DAL.Services.Interfaces.Job;
|
|
|
|
namespace PARR.DAL.Services.Implementations.Job
|
|
{
|
|
internal class JobUnitFilterService : BaseRepository<JobUnitFilter>, IJobUnitFilterService
|
|
{
|
|
public JobUnitFilterService(DataContext dataContext, ILogger<JobUnitFilterService> logger) : base(logger, dataContext) { }
|
|
}
|
|
}
|