15 lines
404 B
C#
15 lines
404 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.Core.Repositories.Interfaces;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.Domain.Entities;
|
|
|
|
namespace PARR.DAL.Repositories
|
|
{
|
|
internal class TnkRepository : BaseRepository<Tnk>, ITnkRepository
|
|
{
|
|
public TnkRepository(ILogger<TnkRepository> logger, DataContext dataContext) : base(logger, dataContext) { }
|
|
|
|
}
|
|
}
|