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