main
1using gorilla.commons.utility;
2using momoney.presentation.presenters;
3using MoMoney.Presentation.Presenters;
4
5namespace MoMoney.Presentation.model.menu.help
6{
7 public interface IDisplayInformationAboutTheApplication : Command {}
8
9 public class DisplayInformationAboutTheApplication : IDisplayInformationAboutTheApplication
10 {
11 public DisplayInformationAboutTheApplication(IRunPresenterCommand run_presenter)
12 {
13 this.run_presenter = run_presenter;
14 }
15
16 public void run()
17 {
18 run_presenter.run<IAboutApplicationPresenter>();
19 }
20
21 readonly IRunPresenterCommand run_presenter;
22 }
23}