using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using PARR.DAL.Context; using PARR.DAL.Models.TaskModels; using PARR.DAL.Services.Abstracts; using PARR.DAL.Services.Interfaces.TaskServices; namespace PARR.DAL.Services.Implementations.TaskServices { internal class TaskErrorService : BaseService, ITaskErrorService { private readonly DataContext dataContext; protected override DbSet EntitySet => dataContext.TaskErrors; protected override DataContext EntitiContext => dataContext; public TaskErrorService(DataContext dataContext, ILogger logger): base(logger) { this.dataContext = dataContext; } } }