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:
parent
1b8dc29595
commit
5995b334eb
@ -5,6 +5,7 @@
|
||||
/// </summary>
|
||||
/// <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>
|
||||
[Obsolete("Use IRepository")]
|
||||
public interface ICRUDRepository<TEntity, TId> where TEntity : class
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user