I am developing a medium sized application with VB2008. To better test my application, I follow the MVP / Supervising Controller example.
My question is: what are your guidelines for sharing responsibility? So far I have come up with winform with a controller instance and an instance of my class. Controls are updated using a DataBinding.
The problem is that I just donβt know where to write the answers (say, validation, reporting, queries, etc.). Inside my class? in a separate class?
Is there a small example of a pure Winform class class that you could point me to?
Michelp
source
share