tags:

views:

120

answers:

3

Possible Duplicate:
What are MVP and MVC and what is the difference?

I don't see any difference between MVP and MVC software architectures (MVC where controller implements mediator pattern), other than the name by which you call the mediator (presenter vs controller)

Can someone provide a clear explanation?

I care because I have a reasonable understanding of MVC via cocoa and I'm wondering how that knowledge will have to grow to understand MPF/C#/.NET

A: 

Here's a nice article that compares both patterns.

Darin Dimitrov
Mediator pattern MVC isn't described here
Nektarios
A: 

Glenn Brock answered this question extremely well in this SO question

heads5150
A: 

Darin's provided a good link. I'd say there are a couple key differences, but a lot of similarity. MVP's view is even simpler than MVVC's - it doesn't know about the model. That makes it easier to get everything covered by tests, IMHO. Also, it makes it easier to provide alternate views, for example, if you want both a GUI and a CLI. But, read the article, it covers the topic well.

Don Branson
Mediator pattern MVC doesn't have a connection between M and V
Nektarios