Attribute Projekt entfernt

This commit is contained in:
Developer 02
2024-03-13 13:05:37 +01:00
parent 085a1ffdec
commit 6659ac25c8
140 changed files with 294 additions and 1628 deletions

View File

@@ -12,7 +12,7 @@ namespace DigitalData.Core.Contracts.Application
/// <typeparam name="TUpdateDto">The type of the Data Transfer Object this service works with to update new entity.</typeparam>
/// <typeparam name="TEntity">The type of the entity this service maps to.</typeparam>
/// <typeparam name="TId">The type of the identifier for the entity.</typeparam>
public interface ICRUDService<TCRUDRepository, TCreateDto, TReadDto, TUpdateDto, TEntity, TId>
public interface ICRUDService<TCRUDRepository, TCreateDto, TReadDto, TUpdateDto, TEntity, TId> : IServiceBase
where TCRUDRepository : ICRUDRepository<TEntity, TId> where TCreateDto : class where TReadDto : class where TUpdateDto : class where TEntity : class
{
/// <summary>