namespace EveOPreview { /// /// Properties and methods that are common for all views /// public interface IView { void Show(); void Hide(); void Close(); } }