Exemple #1
0
 public Thunderbolt3Cable()
 {
     data = new Thunderbolt3Port()
     {
         Data = new DataThunderbolt()
     };
 }
 public Computer()
 {
     thunderbolt3Port = new Thunderbolt3Port()
     {
         Data = new DataThunderbolt()
     };
 }
 public AdapterSoundCardToComputer()
 {
     soundCard    = new SoundCard();
     thunderbolt3 = new Thunderbolt3Port()
     {
         Data = new DataThunderbolt()
     };
 }
Exemple #4
0
 public Thunderbolt2PortToThunderbolt3Port()
 {
     thunderbolt2Port = new Thunderbolt2Port()
     {
         Data = new DataThunderbolt()
     };
     thunderbolt3Port = new Thunderbolt3Port()
     {
         Data = new DataThunderbolt()
     };
 }