Hi,
I working on a MVP designed application and have some design questions. When writing code in the presenter-layer how should the comunication go between different presenter/viwes? Lets say I have a WindowPresenter with its WindowView and I want to set the window title on a window from another window. I have a title/set:er on the window view that wraps the actual gui title. Should I call the title-seter directly on the view (windowPresenter.View.Title = "Title") or should I wrap the view title as a presenter title seter (windowPresenter.Title = "Title") ?