If my objects are for the most part simply holding data that will be sent to the View, does it make sense to implement a separate Service class to initialize object, retirve data and make assignments? Instead, shouldnt the object 'know' what it has to do when it is instantiated, and thus make appropriate calls to repository as needed?
|
|
|
|
|
|
|
like active record? I think that DTO + DAO or domain object + repository is a better design most of times |
||
|
|
|
|
My approach is use separate sometimes called ViewModel for storing data that will be displayed on View, more information about that. As for me ViewModel must be POCO object, without any logic, and calls. |
||
|
|
