Exemplo n.º 1
0
 public DataSourceController(NewDatasourceForm view, Model model)
 {
    this.view = view;
    this.model = model;
    view.Controller = this;
 }
Exemplo n.º 2
0
 public FetchDataController(FetchDataForm view, Model model)
 {
    this.view = view;
    this.model = model;
    view.Controller = this;
 }
Exemplo n.º 3
0
 public ViewController(Model model)
 {
    this.model = model;
 }
Exemplo n.º 4
0
 public ArchiveController(NewArchiveForm view, Model model)
 {
    this.view = view;
    this.model = model;
    view.Controller = this;
 }
Exemplo n.º 5
0
 public CreateDatabaseController(CreateDatabaseForm view, Model model)
 {
    this.view = view;
    this.model = model;
    view.Controller = this;
 }