Tagged Questions
1
vote
2answers
708 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
{
...