Tagged Questions

3
votes
1answer
73 views

C# Where to put view specific information?

I'm trying to reduce the code duplication that exists throughout my asp.net web forms. This is what an example object loaded from the database looks like. Apartment int id decimal rent bool ...
1
vote
2answers
668 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 { ...