I am trying to understand how to implement MVC in winforms so I have put together the following;
1.A main form which is divided into 2 panes (left/right) the left pane will display a list of customers.
2.An order details form which will list all the orders placed for the selected customer on the main form.This order details form will be displayed in the right pane of the main form.
Now, I have defined a view interface for each and a presenter. How should the order details presenter get a hold of the selected customer in the other view?