2
votes
2answers
78 views
Is There Any Advantage in Passing a UI wrapper to a view
Most of the MVC samples I have seen pass an instance of the view to the controller like this
public class View
{
Controller controller = new Controller(this);
}
…
