WorkFlow/WorkFlow.Infrastructure/Repositories/ProfControlsTfRepository.cs

11 lines
449 B
C#

using DigitalData.Core.Abstractions.Infrastructure;
using DigitalData.Core.Infrastructure;
using WorkFlow.Domain.Entities;
using WorkFlow.Infrastructure.Contracts;
namespace WorkFlow.Infrastructure.Repositories
{
public class ProfControlsTfRepository(WFDBContext dbContext) : CRUDRepository<ProfControlsTf, int, WFDBContext>(dbContext, dbContext.ProfControlsTfs), IProfControlsTfRepository, ICRUDRepository<ProfControlsTf, int>
{
}
}