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