mvc presentation model best-practices
- by Andrew Florko
Hello, everybody
How do you usually convert business objects to presentation?
For example:
Business object Person { Id, FirstName, LastName, Patronymic ... } should be presented as "LastName F. P. " in html layout.
We use Presentation classes hierarchy to represent data ready for output from Business model.
Questions:
Will you keep…