summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs')
-rw-r--r--src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs b/src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs
new file mode 100644
index 0000000..f4c593f
--- /dev/null
+++ b/src/Notepad/Presentation/Presenters/Menu/Help/IAboutApplicationPresenter.cs
@@ -0,0 +1,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();
+ }
+ }
+} \ No newline at end of file