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 JobDetailsService : BaseService, IJobDetailsService { private readonly DataContext dataContext; protected override DbSet EntitySet => dataContext.JobDetails; protected override DataContext EntitiContext => dataContext; public JobDetailsService(DataContext dataContext, ILogger logger) : base(logger) { this.dataContext = dataContext; } } }