15 lines
439 B
C#
15 lines
439 B
C#
using Microsoft.Extensions.Logging;
|
|
using PARR.DAL.Context;
|
|
using PARR.DAL.Models;
|
|
using PARR.DAL.Repositories.Base;
|
|
using PARR.DAL.Services.Interfaces;
|
|
|
|
namespace PARR.DAL.Services.Implementations
|
|
{
|
|
internal class RobotHistoryService : BaseRepository<RobotHistory>, IRobotHistoryService
|
|
{
|
|
public RobotHistoryService(DataContext dataContext, ILogger<RobotHistoryService> logger) : base(logger, dataContext) { }
|
|
|
|
}
|
|
}
|