From 5995b334eb99773d197cfd658c38db3b87e1cb59 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 20 May 2025 10:20:42 +0200 Subject: [PATCH] Mark ICRUDRepository as obsolete The ICRUDRepository interface has been marked as obsolete, with an attribute advising users to use IRepository instead. This change aims to direct developers towards a preferred alternative for repository operations. --- .../Interfaces/Repository/ICRUDRepository.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DigitalData.Core.Application/Interfaces/Repository/ICRUDRepository.cs b/DigitalData.Core.Application/Interfaces/Repository/ICRUDRepository.cs index 27103f6..872bb75 100644 --- a/DigitalData.Core.Application/Interfaces/Repository/ICRUDRepository.cs +++ b/DigitalData.Core.Application/Interfaces/Repository/ICRUDRepository.cs @@ -5,6 +5,7 @@ /// /// The type of the entity this repository works with. /// The type of the identifier for the entity. + [Obsolete("Use IRepository")] public interface ICRUDRepository where TEntity : class { ///