feat(ProfileObjStateService): ReadAsync-Methode als Schnittstellenimplementierung erstellt.

This commit is contained in:
Developer 02
2024-10-24 18:57:39 +02:00
parent 5327249f5e
commit 2c66112d4d
2 changed files with 21 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
using DigitalData.Core.Abstractions.Application;
using DigitalData.Core.DTO;
using WorkFlow.Application.DTO.ProfileObjState;
using WorkFlow.Domain.Entities;
@@ -6,5 +7,9 @@ namespace WorkFlow.Application.Contracts
{
public interface IProfileObjStateService : ICRUDService<ProfileObjStateCreateDto, ProfileObjStateDto, ProfileObjStateUpdateDto, ProfileObjState, int>
{
Task<DataResult<IEnumerable<ProfileObjStateDto>>> ReadAsync(
bool withProfile = true, bool withUser = true, bool withState = true,
int? userId = null, string? username = null,
int? profileId = null, int? objId = null, bool? profileActive = null);
}
}