Example #1
0
 public AboutMenuItem(IRunPresenterCommand <IAboutApplicationPresenter> displayAboutCommand)
 {
     this.displayAboutCommand = displayAboutCommand;
 }
Example #2
0
 public AddIncomeTaskPane(IRunPresenterCommand command)
 {
     this.command = command;
 }
Example #3
0
 public HelpMenu(IRunPresenterCommand command)
 {
     this.command = command;
 }
Example #4
0
 public void SetUp()
 {
     mockery       = new MockRepository();
     saveAsCommand = mockery.DynamicMock <IRunPresenterCommand <ISaveAsPresenter> >();
 }
Example #5
0
 public NavigationModule(IEventAggregator broker, IRunPresenterCommand command)
 {
     this.broker = broker;
     this.command = command;
 }
 public DisplayInformationAboutTheApplication(IRunPresenterCommand run_presenter)
 {
     this.run_presenter = run_presenter;
 }
Example #7
0
 public AddNewBillBranch(IRunPresenterCommand command)
 {
     this.command = command;
 }
Example #8
0
 public AddReportingTaskPane(IRunPresenterCommand command)
 {
     this.command = command;
 }
 public void SetUp()
 {
     mockery             = new MockRepository();
     displayAboutCommand = mockery.DynamicMock <IRunPresenterCommand <IAboutApplicationPresenter> >();
 }
Example #10
0
 public AddBillingTaskPane(IRunPresenterCommand command)
 {
     this.command = command;
 }
Example #11
0
 public ToolbarModule(IEventAggregator broker, IRunPresenterCommand command)
 {
     this.broker = broker;
     this.command = command;
 }
Example #12
0
 public ApplicationShellModule(IRunPresenterCommand command)
 {
     this.command = command;
 }
Example #13
0
 public SaveAsMenuItem(IRunPresenterCommand <ISaveAsPresenter> saveAsCommand)
 {
     this.saveAsCommand = saveAsCommand;
 }
Example #14
0
 public AddCompanyTaskPane(IRunPresenterCommand command)
 {
     this.command = command;
 }
Example #15
0
 public AddBillPaymentBranch(IRunPresenterCommand command)
 {
     this.command = command;
 }