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