From 3d35c1ab218b97bad48f0cc9cfcfb46f3eed17fc Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 23 Oct 2024 10:41:25 +0200 Subject: [PATCH] feat(Contracts): IProfControlsTfRepository als eine Implementierung von ICRUDRepository erstellt --- .../Contracts/{IConfig.cs => IConfigRepository.cs} | 0 .../Contracts/IProfControlsTfRepository.cs | 9 +++++++++ 2 files changed, 9 insertions(+) rename WorkFlow.Infrastructure/Contracts/{IConfig.cs => IConfigRepository.cs} (100%) create mode 100644 WorkFlow.Infrastructure/Contracts/IProfControlsTfRepository.cs diff --git a/WorkFlow.Infrastructure/Contracts/IConfig.cs b/WorkFlow.Infrastructure/Contracts/IConfigRepository.cs similarity index 100% rename from WorkFlow.Infrastructure/Contracts/IConfig.cs rename to WorkFlow.Infrastructure/Contracts/IConfigRepository.cs diff --git a/WorkFlow.Infrastructure/Contracts/IProfControlsTfRepository.cs b/WorkFlow.Infrastructure/Contracts/IProfControlsTfRepository.cs new file mode 100644 index 0000000..042f3f3 --- /dev/null +++ b/WorkFlow.Infrastructure/Contracts/IProfControlsTfRepository.cs @@ -0,0 +1,9 @@ +using DigitalData.Core.Abstractions.Infrastructure; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.Infrastructure.Contracts +{ + public interface IProfControlsTfRepository : ICRUDRepository + { + } +} \ No newline at end of file