15 lines
636 B
C#
15 lines
636 B
C#
using DigitalData.Core.Abstractions.Application;
|
|
using DigitalData.Core.DTO;
|
|
using WorkFlow.Application.DTO.ProfileObjState;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Application.Contracts
|
|
{
|
|
public interface IProfileObjStateService : ICRUDService<ProfileObjStateCreateDto, ProfileObjStateDto, 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);
|
|
}
|
|
} |