Ejemplo n.º 1
0
 public ConnectorCollection CreateConnectorCollection()
 {
   var plug = new Plug();
   var connectorCollection = new ConnectorCollection();
   connectorCollection.Connectors.Add(plug);
   return connectorCollection;
 }
Ejemplo n.º 2
0
 public ConnectorCollection CreateConnectorCollection()
 {
   var socket = new Socket();
   var connectorCollection = new ConnectorCollection();
   connectorCollection.Connectors.Add(socket);
   return connectorCollection;
 }