feat(WFDBContext): Implementiert UserManagerDbContext.

This commit is contained in:
Developer 02
2024-10-24 20:16:08 +02:00
parent 70d7ed7415
commit c7f1be7c58
3 changed files with 27 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ 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>
{
}