If I have an object, say, a user class, with say First & Last Name properties what is a better way to populate it:
- The PAGE instantiates the class and the PAGE calls the business layer to popualte the class. (In this case the class is essentially a container for data).
or
- The class itself not only has the properties, but it also has a method to call the business layer, populate itself and return itself populated to the page.