// Since we're translating one interface to another, we're going to have to actually
 // have a reference to the class that implements the original interface
 public UnchangeableAdapter(UnchangeableBaseClass baseClass)
 {
     _baseClass = baseClass;
 }
 // Since we're translating one interface to another, we're going to have to actually
 // have a reference to the class that implements the original interface
 public UnchangeableAdapter(UnchangeableBaseClass baseClass)
 {
     _baseClass = baseClass;
 }