| Author: pradipta 13 Aug 2008 | Member Level: Gold | Rating: Points: 3 |
There is a good article in the following URL you can refer to.You can also download the sample code from there http://www.codeproject.com/KB/architecture/ModelViewPresenter.aspx
|
| Author: Suresh p Swamy 13 Nov 2008 | Member Level: Silver | Rating: Points: 6 |
Model View Presenter, is a network of objects where each collection co-ordinate within them among to achieve solution in such away that the application becomes very testable.
Here model is domain-specific representation of the data, View is nothing but the win form or Web forms and the Presenter are the components which take the user input from the user and communicate with the models via the interfaces. • View contains the Presenter instance. • Presenter is the only class knowing how to reach to model and retrieve the data needed for performing business logic. • Presenter talks to the View through the view interface (abstracted representation of the View without UI specific attributes). • View doesn't know nothing about the Model.
MVC and MVP .doc |