Consider the common layered architecture of:
- UI
- Service/Application/Controller
- Domain
- Persistancy
The motivation: We are building a forum system. Somewhere in the Service layer there should be a method like "getForums". I am wondering what should be its return type -
- Should it be some collection of forumID's (primitives) - we would need to issue many more calls to the Service layer in order to present the topic and description of the forum (using its ID).
- Should it be some collection of Forum objects (from the domain layer) - we could end up with a UI that has direct access to the Domain layer (sounds really bad to me)
- Should it be some collection of specially made objects (representing only the topic, description and ID of a forum)? (sounds like too much code for nothing)
