Ejemplo n.º 1
0
 public Developer(Transport t)
 {
     this.t = t;
 }
Ejemplo n.º 2
0
 public Game(Transport t)
 {
     this.t = t;
 }
Ejemplo n.º 3
0
 public Transaction(Transport t)
 {
     this.t = t;
 }
Ejemplo n.º 4
0
 public Block(Transport t)
 {
     this.t = t;
 }
Ejemplo n.º 5
0
 public Address(Transport t)
 {
     this.t = t;
 }
Ejemplo n.º 6
0
 public Player(Transport t)
 {
     this.t = t;
 }
Ejemplo n.º 7
0
 public Bitcoin(Transport t)
 {
     Address = new Address(t);
     Transaction = new Transaction(t);
     Block = new Block(t);
 }