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