From 3c5df5bc6aa87727c0847af1bba175fe9c1b20d6 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 23 Oct 2024 10:45:01 +0200 Subject: [PATCH] feat(Contracts): IWfStateRepository als eine Implementierung von ICRUDRepository erstellt. --- WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs diff --git a/WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs b/WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs new file mode 100644 index 0000000..aa7ae9f --- /dev/null +++ b/WorkFlow.Infrastructure/Contracts/IWfStateRepository.cs @@ -0,0 +1,9 @@ +using DigitalData.Core.Abstractions.Infrastructure; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.Infrastructure.Contracts +{ + public interface IWfStateRepository : ICRUDRepository + { + } +} \ No newline at end of file