feat(dal): Добавлена таблица Groups для возможности группировки Job
This commit is contained in:
@@ -7,11 +7,11 @@ using PARR.DAL.Services.Interfaces.Job;
|
||||
|
||||
namespace PARR.DAL.Services.Implementations.Job
|
||||
{
|
||||
internal class JobDetailsService : BaseService<Models.Job.JobDetails>, IJobDetailsService
|
||||
internal class JobDetailsService : BaseService<Models.Job.JobUnitFilter>, IJobDetailsService
|
||||
{
|
||||
private readonly DataContext dataContext;
|
||||
|
||||
protected override DbSet<JobDetails> EntitySet => dataContext.JobDetails;
|
||||
protected override DbSet<JobUnitFilter> EntitySet => dataContext.JobDetails;
|
||||
|
||||
protected override DataContext EntitiContext => dataContext;
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace PARR.DAL.Services.Interfaces.Job
|
||||
{
|
||||
public interface IJobDetailsService : IBaseService<Models.Job.JobDetails>
|
||||
public interface IJobDetailsService : IBaseService<Models.Job.JobUnitFilter>
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user