using DigitalData.Core.Abstractions.Infrastructure; using DigitalData.Core.Infrastructure; using WorkFlow.Application.Contracts.Repositories; using WorkFlow.Domain.Entities; 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 : CRUDRepository, IConfigRepository, ICRUDRepository { public ConfigRepository(WFDBContext dbContext) : base(dbContext, dbContext.Configs) { } } }