feat(Contracts): implementiert alle Repository-Schnittstellen mit CRUDRepository
This commit is contained in:
11
WorkFlow.Infrastructure/Repositories/ConfigRepository.cs
Normal file
11
WorkFlow.Infrastructure/Repositories/ConfigRepository.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using DigitalData.Core.Abstractions.Infrastructure;
|
||||
using DigitalData.Core.Infrastructure;
|
||||
using WorkFlow.Domain.Entities;
|
||||
using WorkFlow.Infrastructure.Contracts;
|
||||
|
||||
namespace WorkFlow.Infrastructure.Repositories
|
||||
{
|
||||
public class ConfigRepository(WFDBContext dbContext) : CRUDRepository<Config, int, WFDBContext>(dbContext, dbContext.Configs), IConfigRepository, ICRUDRepository<Config, int>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user