public OrchestraConductor()
 {
     StringSection     = new StringSection();
     BrassSection      = new BrassSection();
     PercussionSection = new PercussionSection();
     WoodwindSection   = new WoodwindSection();
 }
 public void PlayTutti()
 {
     Console.WriteLine("\nPlaying tutti...");
     StringSection.StartPlaying();
     WoodwindSection.StartPlaying();
     BrassSection.StartPlaying();
     PercussionSection.StartPlaying();
 }
 public OrchestraConductor(StringSection strings, BrassSection brass,
                           PercussionSection percussion, WoodwindSection woodwinds)
 {
     StringSection     = strings;
     BrassSection      = brass;
     PercussionSection = percussion;
     WoodwindSection   = woodwinds;
 }
 public void StopFanfare()
 {
     Console.WriteLine("\nStopping the fanfare...");
     BrassSection.StopPlaying();
     PercussionSection.StopPlaying();
 }
 public void PlayFanfare()
 {
     Console.WriteLine("\nPlaying a fanfare...");
     BrassSection.StartPlaying();
     PercussionSection.StartPlaying();
 }