15 lines
394 B
C#
15 lines
394 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Models;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.DAL.Services.Interfaces;
|
|
|
|
namespace PARR.DAL.Services.Implementations
|
|
{
|
|
internal class TnkService : BaseRepository<Tnk>, ITnkService
|
|
{
|
|
public TnkService(ILogger<TnkService> logger, DataContext dataContext) : base(logger, dataContext) { }
|
|
|
|
}
|
|
}
|