feat: Из dal перенесены все модели в Domain. Из dal переименованы service в repository, вынесены в Core.
This commit is contained in:
14
PARR.DAL/Repositories/AgentHistoryRepository.cs
Normal file
14
PARR.DAL/Repositories/AgentHistoryRepository.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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 AgentHistoryRepository : BaseRepository<AgentHistory>, IAgentHistoryRepository
|
||||
{
|
||||
public AgentHistoryRepository(DataContext dataContext, ILogger<AgentHistoryRepository> logger) : base(logger, dataContext) { }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user