feat(WfState): Wf-Präfix aus Entität, Repository und DbSet entfernt

This commit is contained in:
Developer 02
2024-10-23 11:49:20 +02:00
parent e1ec8c581c
commit a7081d3f74
6 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ using WorkFlow.Domain.Entities;
using WorkFlow.Infrastructure.Contracts;
namespace WorkFlow.Infrastructure.Repositories
{
public class WfStateRepository(WFDBContext dbContext) : CRUDRepository<WfState, int, WFDBContext>(dbContext, dbContext.WfStates), IWfStateRepository, ICRUDRepository<WfState, int>
public class StateRepository(WFDBContext dbContext) : CRUDRepository<State, int, WFDBContext>(dbContext, dbContext.States), IStateRepository, ICRUDRepository<State, int>
{
}
}