public FestivalController(IStage stage)
 {
     this.stage             = stage;
     this.performerFactory  = new PerformerFactory();
     this.instrumentFactory = new InstrumentFactory();
     this.setFactory        = new SetFactory();
 }
 public FestivalController(IStage stage, ISetFactory setFactory,
                           IInstrumentFactory instrumentFactory)
 {
     this.stage             = stage;
     this.setFactory        = setFactory;
     this.instrumentFactory = instrumentFactory;
 }
Exemple #3
0
 public FestivalController(IStage stage, ISetFactory setFactory, IInstrumentFactory instrumentFactory, IPerformerFactory performerFactory, ISongFactory songFactory)
 {
     this.stage             = stage;
     this.setFactory        = setFactory;
     this.instrumentFactory = instrumentFactory;
     this.performerFactory  = performerFactory;
     this.songFactory       = songFactory;
 }
 public FestivalController(IStage stage)
 {
     this.stage        = stage;
     setFactory        = new SetFactory();
     performerFactory  = new PerformerFactory();
     songFactory       = new SongFactory();
     instrumentFactory = new InstrumentFactory();
 }
 public FestivalController(IStage stage)               // CHEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
 {
     this.stage             = stage;                   // CHEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
     this.instrumentFactory = new InstrumentFactory(); // CHEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
     this.performerFactory  = new PerformerFactory();  // CHEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
     this.setFactory        = new SetFactory();        // CHEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
     this.songFactory       = new SongFactory();       // CHEKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK
 }