Пример #1
0
 public Developer(Transport t)
 {
     this.t = t;
 }
Пример #2
0
 public Game(Transport t)
 {
     this.t = t;
 }
Пример #3
0
 public Transaction(Transport t)
 {
     this.t = t;
 }
Пример #4
0
 public Block(Transport t)
 {
     this.t = t;
 }
Пример #5
0
 public Address(Transport t)
 {
     this.t = t;
 }
Пример #6
0
 public Player(Transport t)
 {
     this.t = t;
 }
Пример #7
0
 public Bitcoin(Transport t)
 {
     Address = new Address(t);
     Transaction = new Transaction(t);
     Block = new Block(t);
 }