feat(ProfileControlsTFRepository): Zwei asynchrone Lesemethoden wurden zusammengeführt.

This commit is contained in:
Developer 02
2024-10-24 15:04:46 +02:00
parent 1b21ccecf3
commit 05701c10d2
2 changed files with 16 additions and 9 deletions

View File

@@ -5,8 +5,10 @@ namespace WorkFlow.Infrastructure.Contracts
{
public interface IProfileControlsTFRepository : ICRUDRepository<ProfileControlsTF, int>
{
Task<IEnumerable<ProfileControlsTF>> ReadAsync(bool isReadonly = true, bool withProfile = true, bool withUser = false, int? profileId = null, int? objId = null, bool? profileActive = null);
Task<ProfileControlsTF?> ReadAsync(bool isReadonly = true, bool withProfile = true, bool withUser = false, int? usrId = null, string? username = null, int? profileId = null, int? objId = null, bool? profileActive = null);
Task<IEnumerable<ProfileControlsTF>> ReadAsync(
bool isReadonly = true,
bool withProfile = true, bool withUser = false,
int? usrId = null, string? username = null,
int? profileId = null, int? objId = null, bool? profileActive = null);
}
}