public static void Show(ModelMapper modelMapper, AddIndexDelegate addIndex)
 {
     new IndexWindow().ShowDialog(modelMapper, addIndex);
 }
 private void ShowDialog(ModelMapper modelMapper, AddIndexDelegate addIndex)
 {
     _presenter = new Presenter(modelMapper, this);
     _addIndex  = addIndex;
     ShowDialog();
 }
Exemple #3
0
 public void Execute(AddIndexDelegate addIndex)
 {
     addIndex(Name, Description, DbName, IsUnique, IsValidOnTable, IsValidOnTempTable, DataSet);
 }