main
1using System;
2using System.ComponentModel;
3using MoMoney.Presentation.Core;
4using MoMoney.Presentation.Views;
5
6namespace momoney.presentation.views
7{
8 public interface IView : IWindowEvents, ISynchronizeInvoke, IDisposable
9 {
10 }
11
12 public interface IView<TPresenter> : IView where TPresenter : IPresenter
13 {
14 void attach_to(TPresenter presenter);
15 }
16}