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