- Vererbung von IService und Service auf alle CRUD-Services und -Interfaces angewendet, mit Ausnahme von Module und ModuleOfUser.
13 lines
625 B
C#
13 lines
625 B
C#
using DigitalData.Core.Abstractions.Application;
|
|
using DigitalData.UserManager.Application.DTOs.UserRep;
|
|
using DigitalData.UserManager.Domain.Entities;
|
|
using DigitalData.Core.DTO;
|
|
using DigitalData.UserManager.Application.Services;
|
|
|
|
namespace DigitalData.UserManager.Application.Contracts
|
|
{
|
|
public interface IUserRepService : IBaseService<UserRepCreateDto, UserRepReadDto, UserRepUpdateDto, UserRep>
|
|
{
|
|
Task<DataResult<IEnumerable<UserRepReadDto>>> ReadAllAsync(bool withUser = false, bool withRepGroup = false, bool withRightGroup = false, bool withRepUser = false, int? userId = null);
|
|
}
|
|
} |