Esempio n. 1
0
 public Aircraft(string callSign, IAirTrafficController tower)
 {
     _callSign  = callSign;
     this.tower = tower;
     tower.RegisterAirCraftUnderGuidance(this);
 }