Ybbest
Ybbest

Reputation: 1550

What functionalities can be put in the presenter for the MVP Design pattern

I have been using MVP for a while .Sometimes I get confused what actions can be performed inside the presenter. For me, I have a presenter only serves as layer to talk to the service layer(data access and other utility class) and update the view. Can anyone share some thought on what actions can be performed in the presenter and what can not be? Some useful links on that would be good too.

Upvotes: 2

Views: 148

Answers (2)

Jim Scott
Jim Scott

Reputation: 2553

I just wrote a blog entry on the MVP (Model View Presenter) - Passive View pattern. Take a look at it and see what you think.

http://coding.infoconex.com/post/(MVP)-Model-View-Presenter-Passive-View.aspx

Upvotes: 1

Burt
Burt

Reputation: 7758

I am going to provide a list of links for you as they would explain this better than I could.

Also read up on what Martin Fowler has to say about it:

I hope this helps.

Upvotes: 3

Related Questions