From b91769d9319a0a73859d88cceea2bf0e1d7c62a0 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 10 Sep 2024 11:17:32 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20ReadAll-Methode=20aus=20allen=20Sch?= =?UTF-8?q?nittstellen=20entfernt,=20da=20sie=20unn=C3=B6tig=20war.=20Dies?= =?UTF-8?q?e=20=C3=84nderung=20verbessert=20die=20Klarheit=20der=20Schnitt?= =?UTF-8?q?stellen=20und=20entspricht=20den=20Best=20Practices.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Infrastructure/ICRUDRepository.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs b/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs index c8355e9..4223d82 100644 --- a/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs +++ b/DigitalData.Core.Abstractions/Infrastructure/ICRUDRepository.cs @@ -21,16 +21,6 @@ /// The entity found, or null if no entity is found. Task ReadByIdAsync(TId id); - /// - /// Retrieves all entities of type from the repository. - /// - /// - /// This method returns an that represents all entities in the repository. - /// The result is an IQueryable that allows for further querying and filtering to be applied by the caller. - /// - /// An containing all entities of type in the repository. - protected IQueryable ReadAll(); - /// /// Retrieves all entities from the repository. ///