Dependency Injection

Naive Implementation

  public Quartet() {
    myLead = new Sax();
    myChorus = new JazzGuitar();
    myBass   = new ElectricBass();
    myDrum   = new BongoDrum();
  }