15 lines
449 B
C#
15 lines
449 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 RobotHistoryRepository : BaseRepository<RobotHistory>, IRobotHistoryRepository
|
|
{
|
|
public RobotHistoryRepository(DataContext dataContext, ILogger<RobotHistoryRepository> logger) : base(logger, dataContext) { }
|
|
|
|
}
|
|
}
|