blob: d7e0904c0d68c796c59a966a74291a8228bfacbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Windows;
namespace solidware.financials.windows.ui
{
public interface ApplicationController
{
void add_tab<Presenter, Tab>() where Presenter : TabPresenter where Tab : Tab<Presenter>, new();
void load_tab<Presenter, Tab>(Presenter presenter) where Presenter : TabPresenter where Tab : Tab<Presenter>, new();
void load_region<Presenter, Region>() where Presenter : ui.Presenter where Region : FrameworkElement, View<Presenter>, new();
}
}
|