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