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