public IConnectable GetConnectable()
 {
     Client client = new Client ("", FlowDirection, ConnectionType);
     foreach (int portId in _portIds) {
         client.AddPort (new DummyPort (portId, ConnectionType, FlowDirection));
     }
     return client;
 }