14 lines
503 B
C#
14 lines
503 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.Core.Repositories.Interfaces.RobotRepositories;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.Domain.Entities.RobotEntities;
|
|
|
|
namespace PARR.DAL.Repositories.RobotRepositories
|
|
{
|
|
internal class RobotSnapshotRepository : BaseRepository<RobotSnapshot>, IRobotSnapshotRepository
|
|
{
|
|
public RobotSnapshotRepository(ILogger<RobotSnapshotRepository> logger, DataContext dataContext) : base(logger, dataContext) { }
|
|
}
|
|
}
|