コード例 #1
0
 private void ShowDialog(ModelMapper modelMapper, AddPrimaryKeyDelegate addPrimaryKey)
 {
     _presenter     = new Presenter(modelMapper, this);
     _addPrimaryKey = addPrimaryKey;
     ShowDialog();
 }
コード例 #2
0
 public void Execute(AddPrimaryKeyDelegate addPrimaryKey)
 {
     addPrimaryKey(PkTypeName, DataSet, KeyTypeName, RefTypeName);
 }
コード例 #3
0
 public static void Show(ModelMapper modelMapper, AddPrimaryKeyDelegate addPrimaryKey)
 {
     new PrimaryKeyWindow().ShowDialog(modelMapper, addPrimaryKey);
 }