private void ConnectionPointOutPresenterOnSelected()
        {
            _selectedConnectionPointPresenter = _connectionPointOutPresenter;

            if (ConnectionPointSelected != null)
            {
                ConnectionPointSelected.Invoke(this, _connectionPointOutPresenter);
            }
        }
Ejemplo n.º 2
0
 private void ConnectionPointOutPresenterOnSelected()
 {
     SelectedPortPresenter = PortOut;
     ConnectionPointSelected?.Invoke(this, PortOut);
 }