Moving source files into a separate folder
This commit is contained in:
19
src/Eve-O-Preview/ApplicationBase/PresenterGeneric.cs
Normal file
19
src/Eve-O-Preview/ApplicationBase/PresenterGeneric.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace EveOPreview
|
||||
{
|
||||
public abstract class Presenter<TView, TArgument> : IPresenter<TArgument>
|
||||
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 abstract void Run(TArgument args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user