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

@@ -3,7 +3,7 @@ using WorkFlow.Domain.Entities;
namespace WorkFlow.Infrastructure.Contracts
{
public interface IWfStateRepository : ICRUDRepository<WfState, int>
public interface IStateRepository : ICRUDRepository<State, int>
{
}
}