Beispiel #1
0
        private void suggestComboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            var t = (DatabaseEntity)selectIMapsDirectlyToDatabaseTableComboBox1.SelectedItem;

            if (t != null)
            {
                _command.SetTarget(t);
            }

            lblGo.Enabled = t != null;
        }
Beispiel #2
0
 public CohortIdentificationConfigurationMenu(RDMPContextMenuStripArgs args, ProjectCohortIdentificationConfigurationAssociation association) : this(args, association.CohortIdentificationConfiguration)
 {
     _executeAndImportCommand.SetTarget((DatabaseEntity)association.Project);
     _executeCommandClone.SetTarget((DatabaseEntity)association.Project);
 }