chore: Aktualisierte Core.Application

This commit is contained in:
Developer 02
2025-01-15 11:43:18 +01:00
parent 6fc8bdc964
commit b7f8ea1e8e
14 changed files with 19 additions and 19 deletions

View File

@@ -5,10 +5,9 @@ using DigitalData.UserManager.Application.DTOs.Base;
namespace DigitalData.UserManager.Application.Contracts
{
public interface IBaseService<TCreateDto, TReadDto, TUpdateDto, TBaseEntity> : ICRUDService<TCreateDto, TReadDto, TUpdateDto, TBaseEntity, int>
public interface IBaseService<TCreateDto, TReadDto, TBaseEntity> : ICRUDService<TCreateDto, TReadDto, TBaseEntity, int>
where TCreateDto : BaseCreateDto
where TReadDto : class
where TUpdateDto : BaseUpdateDto
where TBaseEntity : BaseEntity
{