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