15 lines
439 B
C#
15 lines
439 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 SubprocessRepository : BaseRepository<Subprocess>, ISubprocessRepository
|
|
{
|
|
public SubprocessRepository(ILogger<SubprocessRepository> logger, DataContext dataContext) : base(logger, dataContext) { }
|
|
|
|
}
|
|
}
|