public void PréparerOrchestration()
 {
     this.JouerInstrument += v.JouerDuViolon;
     this.JouerInstrument += v.JouerDuViolon;
     this.JouerInstrument += g.JouerDeLaGuitare;
 }
 public void ajoutVioloniste()
 {
     this.JouerInstrument += v.JouerDuViolon;
 }
 public void ajoutTrompetiste()
 {
     this.JouerInstrument += t.JouerDeLaTrompette;
 }
 public void ajoutSilencieux()
 {
     this.JouerInstrument += s.NeRienJouer;
 }
 public void ajoutPianiste()
 {
     this.JouerInstrument += p.JouerDuPiano;
 }
 public void ajoutGuitariste()
 {
     this.JouerInstrument += g.JouerDeLaGuitare;
 }