main
1using MoMoney.Presentation.Core;
2using momoney.presentation.views;
3
4namespace momoney.presentation.presenters
5{
6 public interface IAboutApplicationPresenter : IContentPresenter
7 {
8 }
9
10 public class AboutTheApplicationPresenter : ContentPresenter<IAboutApplicationView>, IAboutApplicationPresenter
11 {
12 public AboutTheApplicationPresenter(IAboutApplicationView view) : base(view)
13 {
14 }
15
16 public override void run()
17 {
18 }
19 }
20}