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