Tagged Questions

1
vote
1answer
137 views

Model View Presenter - how to implement complex Properties in an IView interace

I am finding it difficult understanding how best to implement 'IView' interface properties which are not simple types, and was wondering how others approach this in a Model View Presenter application. ...
1
vote
2answers
669 views

Derived Interface with derived interface member

I have 2 base interfaces, IViewBase (which all views will implement) and IPresenterBase (which all presenters will implement): public interface IViewBase { } public interface IPresenterBase { ...