Mark IBaseService as obsolete for MediatR usage
Added an `Obsolete` attribute to the `IBaseService` interface, recommending the use of MediatR instead. This change serves as a warning to developers about potential deprecation, encouraging a transition to the suggested alternative.
This commit is contained in:
parent
cc708cae0c
commit
8f2ec82d4f
@ -5,6 +5,7 @@ using DigitalData.Core.Abstraction.Application;
|
||||
|
||||
namespace DigitalData.UserManager.Application.Contracts
|
||||
{
|
||||
[Obsolete("Use MediatR")]
|
||||
public interface IBaseService<TCreateDto, TReadDto, TBaseEntity> : ICRUDService<TCreateDto, TReadDto, TBaseEntity, int>
|
||||
where TCreateDto : BaseCreateDto
|
||||
where TReadDto : class
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user