P
peter shaw
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 moduleControoler I show a form like this:
string key = "_abc";
AForm view = this.WorkItem.Items.Get<AForml>(key);
if (view == null)
{
view = WorkItem.SmartParts.AddNew<AForm>();
}
view.ShowDialog();
What I want is calling a function in the modulecontroller from a view
presenter. Say this is a function call GetCustomerID(string 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 moduleControoler I show a form like this:
string key = "_abc";
AForm view = this.WorkItem.Items.Get<AForml>(key);
if (view == null)
{
view = WorkItem.SmartParts.AddNew<AForm>();
}
view.ShowDialog();
What I want is calling a function in the modulecontroller from a view
presenter. Say this is a function call GetCustomerID(string a);
Thank u.
peter