12 lines
523 B
C#
12 lines
523 B
C#
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<Config, int, WFDBContext>(dbContext, dbContext.Configs), IConfigRepository, ICRUDRepository<Config, int>
|
|
{
|
|
}
|
|
} |