public MainWindow() { InitializeComponent(); TableRepository repository = new TableRepository(); tableController = new TableController(repository, this); en.Lists.Load(); CB.DataContext = en.Lists.Local; }
public TableController(TableRepository repository, ITableLayoutView view) { this.view = view; this.repository = repository; }