14 lines
547 B
C#
14 lines
547 B
C#
using DigitalData.Core.Abstractions.Infrastructure;
|
|
using WorkFlow.Domain.Entities;
|
|
|
|
namespace WorkFlow.Infrastructure.Contracts
|
|
{
|
|
public interface IProfileObjStateRepository : ICRUDRepository<ProfileObjState, int>
|
|
{
|
|
Task<IEnumerable<ProfileObjState>> ReadAsync(
|
|
bool isReadonly = true,
|
|
bool withProfile = true, bool withUser = true, bool withState = true,
|
|
int? userId = null, string? username = null,
|
|
int? profileId = null, int? objId = null, bool? profileActive = null);
|
|
}
|
|
} |