Beispiel #1
0
 public FestivalController(IStage stage, IInstrumentFactory instrumentFactory, IPerformerFactory performerFactory, ISongFactory songFactory)
 {
     this.stage             = stage;
     this.instrumentFactory = instrumentFactory;
     this.performerFactory  = performerFactory;
     this.songFactory       = songFactory;
 }
 public FestivalController(IStage stage)
 {
     this.stage             = stage;
     this.performerFactory  = new PerformerFactory();
     this.instrumentFactory = new InstrumentFactory();
     this.setFactory        = new SetFactory();
 }
 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
 }
 public FestivalController(IStage stage,
                           ISetController setController,
                           ISetFactory setFactory,
                           IInstrumentFactory instrumentFactory,
                           IPerformerFactory performerFactory,
                           ISongFactory songFactory)
 {
     this.setController     = setController;
     this.setFactory        = setFactory;
     this.instrumentFactory = instrumentFactory;
     this.performerFactory  = performerFactory;
     this.songFactory       = songFactory;
     this.stage             = stage;
     this.setController     = setController;//= new SetController(stage);
 }
 public PerformerService(IAppUnitOfWork uow, IPerformerFactory performerFactory)
 {
     _uow = uow;
     _performerFactory = performerFactory;
 }
Beispiel #7
0
 public PerformanceFactory(ILocationFactory locationFactory, IEventFactory eventFactory, IPerformerFactory performerFactory)
 {
     _locationFactory  = locationFactory;
     _eventFactory     = eventFactory;
     _performerFactory = performerFactory;
 }