I have a question if it is possible to do it, I am doing a small project in C # following the MVC pattern, it is organized in the following way:
- Project 1 (library of classes): Access to data
- Project 2 (library of classes): Controller (bridge between forms and access to data)
- Project 3 (windows form application): The forms.
My doubt is the following since project 2 could be my main main and call and access all the attributes of the three project forms.
Greetings