feat(WfState): Wf-Präfix aus Entität, Repository und DbSet entfernt
This commit is contained in:
10
WorkFlow.Infrastructure/Repositories/StateRepository.cs
Normal file
10
WorkFlow.Infrastructure/Repositories/StateRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using DigitalData.Core.Abstractions.Infrastructure;
|
||||
using DigitalData.Core.Infrastructure;
|
||||
using WorkFlow.Domain.Entities;
|
||||
using WorkFlow.Infrastructure.Contracts;
|
||||
namespace WorkFlow.Infrastructure.Repositories
|
||||
{
|
||||
public class StateRepository(WFDBContext dbContext) : CRUDRepository<State, int, WFDBContext>(dbContext, dbContext.States), IStateRepository, ICRUDRepository<State, int>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user