Hi,
I have a solution, that includs a project.
The project have some folder, (like folder1, folder2, folder3,...).
Inside folder there is a view and view presenter.
Directly under project, there is modulcontroller that controls load win
forms etc.
In the moduleControole r I show a form like this:
string key = "_abc";
AForm view = this.WorkItem.I tems.Get<AForml >(key);
if (view == null)
{
view = WorkItem.SmartP arts.AddNew<AFo rm>();
}
view.ShowDialog ();
What I want is calling a function in the modulecontrolle r from a view
presenter. Say this is a function call GetCustomerID(s tring a);
Thank u.
peter
I have a solution, that includs a project.
The project have some folder, (like folder1, folder2, folder3,...).
Inside folder there is a view and view presenter.
Directly under project, there is modulcontroller that controls load win
forms etc.
In the moduleControole r I show a form like this:
string key = "_abc";
AForm view = this.WorkItem.I tems.Get<AForml >(key);
if (view == null)
{
view = WorkItem.SmartP arts.AddNew<AFo rm>();
}
view.ShowDialog ();
What I want is calling a function in the modulecontrolle r from a view
presenter. Say this is a function call GetCustomerID(s tring a);
Thank u.
peter
Comment