private void CreatePullUp()
        {
            if (this.superDomainComboBox.ActiveItem == null)
            {
                return;
            }

            var superDomain           = this.superDomainComboBox.ActiveItem;
            var includeContainedItems = this.includeMembersCheckButton.Active;

            this.pullUp = this.repository.PullUp(superDomain, this.objectType, includeContainedItems);

            this.dependencyTextView.Update(this.pullUp);
        }
Ejemplo n.º 2
0
        private void CreatePullUp()
        {
            if (this.pullUpToComboBox.SelectedIndex < 0)
            {
                return;
            }

            var superDomain           = (Domain)this.pullUpToComboBox.SelectedItem;
            var includeContainedItems = this.includeCheckBox.Checked;

            this.pullUp = this.repository.PullUp(superDomain, this.objectType, includeContainedItems);

            this.dependencyRichTextBox.UpdateDependencies(this.pullUp);
        }