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.
This commit is contained in:
Developer 02 2025-05-20 10:20:42 +02:00
parent 1b8dc29595
commit 5995b334eb

View File

@ -5,6 +5,7 @@
/// </summary> /// </summary>
/// <typeparam name="TEntity">The type of the entity this repository works with.</typeparam> /// <typeparam name="TEntity">The type of the entity this repository works with.</typeparam>
/// <typeparam name="TId">The type of the identifier for the entity.</typeparam> /// <typeparam name="TId">The type of the identifier for the entity.</typeparam>
[Obsolete("Use IRepository")]
public interface ICRUDRepository<TEntity, TId> where TEntity : class public interface ICRUDRepository<TEntity, TId> where TEntity : class
{ {
/// <summary> /// <summary>