Die Service-Schnittstellen wurden überarbeitet, um den generischen Repository-Parameter zur Vereinfachung und besseren Lesbarkeit zu entfernen.

This commit is contained in:
Developer 02
2024-06-15 01:03:10 +02:00
parent eb92b4db67
commit b5bbfc9270
12 changed files with 12 additions and 13 deletions

View File

@@ -6,7 +6,7 @@ using DigitalData.Core.DTO;
namespace DigitalData.UserManager.Application.Contracts
{
public interface IUserRepService : ICRUDService<IUserRepRepository, UserRepCreateDto, UserRepReadDto, UserRepUpdateDto, UserRep, int>
public interface IUserRepService : ICRUDService<UserRepCreateDto, UserRepReadDto, UserRepUpdateDto, UserRep, int>
{
Task<DataResult<IEnumerable<UserRepReadDto>>> ReadAllAsync(bool withUser = false, bool withRepGroup = false, bool withRightGroup = false, bool withRepUser = false, int? userId = null);
}