using DigitalData.Core.Abstractions.Infrastructure; using DigitalData.Core.Infrastructure; using WorkFlow.Domain.Entities; using WorkFlow.Infrastructure.Contracts; namespace WorkFlow.Infrastructure.Repositories { //TODO: Make the db context type generic so that it can be used by other projects with different db contexts. public class ConfigRepository(WFDBContext dbContext) : CRUDRepository(dbContext, dbContext.Configs), IConfigRepository, ICRUDRepository { } }