Files
parr_api/PARR.DAL/Services/Implementations/AgentHistoryService.cs

15 lines
439 B
C#
Raw Normal View History

using Microsoft.Extensions.Logging;
2023-10-19 11:22:35 +10:00
using PARR.DAL.Context;
using PARR.DAL.Models;
using PARR.DAL.Repositories.Base;
2023-10-19 11:22:35 +10:00
using PARR.DAL.Services.Interfaces;
namespace PARR.DAL.Services.Implementations
{
internal class AgentHistoryService : BaseRepository<AgentHistory>, IAgentHistoryService
2023-10-19 11:22:35 +10:00
{
public AgentHistoryService(DataContext dataContext, ILogger<AgentHistoryService> logger) : base(logger, dataContext) { }
2023-10-19 11:22:35 +10:00
}
}