Switch to MVP pattern
This commit is contained in:
12
Eve-O-Preview/ApplicationBase/IView.cs
Normal file
12
Eve-O-Preview/ApplicationBase/IView.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace EveOPreview
|
||||
{
|
||||
/// <summary>
|
||||
/// Properties and methods that are common for all views
|
||||
/// </summary>
|
||||
public interface IView
|
||||
{
|
||||
void Show();
|
||||
void Hide();
|
||||
void Close();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user