private void CreatePullUp()
        {
            if (this.pullUpToComboBox.SelectedIndex < 0)
            {
                return;
            }

            var superDomain = (Domain)this.pullUpToComboBox.SelectedItem;

            this.pullUp = this.repository.PullUp(superDomain, this.relationType);

            this.dependencyRichTextBox.UpdateDependencies(this.pullUp);
        }
Пример #2
0
        private void CreatePullUp()
        {
            if (this.superDomainComboBox.ActiveItem == null)
            {
                return;
            }

            var superDomain = this.superDomainComboBox.ActiveItem;

            this.pullUp = this.repository.PullUp(superDomain, this.relationType);

            this.dependencyTextView.Update(this.pullUp);
        }