feat(Contracts): IWfStateRepository als eine Implementierung von ICRUDRepository erstellt.

This commit is contained in:
Developer 02
2024-10-23 10:45:01 +02:00
parent 3f70bdc8f7
commit 3c5df5bc6a

View File

@@ -0,0 +1,9 @@
using DigitalData.Core.Abstractions.Infrastructure;
using WorkFlow.Domain.Entities;
namespace WorkFlow.Infrastructure.Contracts
{
public interface IWfStateRepository : ICRUDRepository<WfState, int>
{
}
}