using DigitalData.Core.Abstractions.Infrastructure; using WorkFlow.Domain.Entities; namespace WorkFlow.Infrastructure.Contracts { public interface IProfileControlsTFRepository : ICRUDRepository { Task> ReadAsync( bool isReadonly = true, bool withProfile = true, bool withUser = false, int? userId = null, string? username = null, int? profileId = null, int? objId = null, bool? profileActive = null); } }