main
1namespace presentation.windows
2{
3 public interface Dialog<TPresenter> : View<TPresenter> where TPresenter : DialogPresenter
4 {
5 void open();
6 void Close();
7 }
8}