14 lines
463 B
C#
14 lines
463 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 TemplateHistoryRepository : BaseRepository<TemplateHistory>, ITemplateHistoryRepository
|
|
{
|
|
public TemplateHistoryRepository(DataContext dataContext, ILogger<TemplateHistoryRepository> logger) : base(logger, dataContext) { }
|
|
}
|
|
}
|