29 lines
919 B
C#
29 lines
919 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Models.Job;
|
|
using PARR.DAL.Services.Abstracts;
|
|
using PARR.DAL.Services.Interfaces.Job;
|
|
|
|
namespace PARR.DAL.Services.Implementations.Job
|
|
{
|
|
internal class JobGroupService : BaseService<Models.Job.JobGroup>, IJobGroupService
|
|
{
|
|
private readonly DataContext dataContext;
|
|
|
|
public JobGroupService(DataContext dataContext, ILogger<JobGroupService> logger) : base(logger)
|
|
{
|
|
this.dataContext = dataContext;
|
|
}
|
|
protected override DbSet<JobGroup> EntitySet => dataContext.JobGroups;
|
|
|
|
protected override DataContext EntitiContext => dataContext;
|
|
|
|
|
|
public void DeleteDistributionConfig(JobGroupDistributionConfig distributionConfig)
|
|
{
|
|
EntitiContext.JobGroupDistributionConfigs.Remove(distributionConfig);
|
|
}
|
|
}
|
|
}
|