feat(IGroupUserService): Read-By-Group-Id-Schnittstelle hinzugefügt

This commit is contained in:
Developer 02 2024-10-17 11:44:23 +02:00
parent 24726fc850
commit ae14f5842e

View File

@ -16,5 +16,7 @@ namespace DigitalData.UserManager.Infrastructure.Contracts
Task<IEnumerable<GroupOfUser>> ReadAllAsyncWithGroupAndUser();
Task<IEnumerable<GroupOfUser>> ReadByUsernameAsync(string username);
Task<IEnumerable<GroupOfUser>> ReadByUserIdAsync(int userId);
}
}