summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs
blob: f4c593fdff58896c0e76424bb454b229d5766f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Notepad.Presentation.Core;
using Notepad.Presentation.Views.Menu.Help;

namespace Notepad.Presentation.Presenters.Menu.Help {
    public interface IAboutApplicationPresenter : IPresenter {}

    public class AboutApplicationPresenter : IAboutApplicationPresenter {
        private readonly IAboutApplicationView view;

        public AboutApplicationPresenter(IAboutApplicationView view) {
            this.view = view;
        }

        public void Initialize() {
            view.Display();
        }
    }
}