feat(repository): Async-Read-Methode und Username-Filter in ProfileControlsTFRepository hinzugefügt

- `ReadAsync`-Methode für asynchrone Abfrageausführung hinzugefügt.
- `username`-Filter zur `Read`-Methode hinzugefügt.
- Filterlogik in der `Read`-Methode aktualisiert, um die `username`-Bedingung einzuschließen.
This commit is contained in:
Developer 02
2024-10-23 13:11:27 +02:00
parent 845f7fe729
commit e0877f5990
2 changed files with 8 additions and 1 deletions

View File

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