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