feat: Unterstützung für die Filterung nach RepGroupId in der ReadAllAsync-Methode hinzufügen

This commit is contained in:
Developer 02
2024-10-29 16:33:41 +01:00
parent 9e11463ef2
commit 25995e8d48
3 changed files with 9 additions and 7 deletions

View File

@@ -5,6 +5,8 @@ namespace DigitalData.UserManager.Infrastructure.Contracts
{
public interface IUserRepRepository : ICRUDRepository<UserRep, int>
{
Task<IEnumerable<UserRep>> ReadAllAsync(bool withUser = false, bool withRepGroup = false, bool withGroup = false, bool withRepUser = false, int? userId = null, int? groupId = null, bool readOnly = true);
Task<IEnumerable<UserRep>> ReadAllAsync(
bool withUser = false, bool withRepGroup = false, bool withGroup = false, bool withRepUser = false,
int? userId = null, int? groupId = null, int? repGroupId = null, bool readOnly = true);
}
}