Files
eveo/Eve-O-Preview/ApplicationBase/Presenter.cs
2016-05-29 13:18:46 +03:00

22 lines
575 B
C#

namespace EveOPreview
{
public abstract class Presenter<TView> : IPresenter
where TView : IView
{
// Properties are used instead of fields so the code remains CLS compliant
// 'protected readonly' fields would result in non-CLS compliant code
protected TView View { get; private set; }
protected IApplicationController Controller { get; private set; }
protected Presenter(IApplicationController controller, TView view)
{
this.Controller = controller;
this.View = view;
}
public void Run()
{
this.View.Show();
}
}
}