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:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user