Tagged Questions
0
votes
1answer
28 views
Users and roles: Where to put queryUsersWithRole()?
I have two model classes User and Role and two managers/DAOs (UserManager and RoleManager) plus a method which gives me all users with a certain role (List<User> getUsersWithRole(Role)).
In ...