예제 #1
0
 public NoteRenderStrategy(IMeasurementService measurementService, IAlterationService alterationService, IScoreService scoreService, IBeamingService beamingService)
 {
     this.measurementService = measurementService;
     this.alterationService  = alterationService;
     this.scoreService       = scoreService;
     this.beamingService     = beamingService;
 }
예제 #2
0
 public ChordBusiness(IKeyService keyService, IAlterationService alterationService, IChordQualityService chordQualityService, IChordService chordService, INoteService noteService)
 {
     _keyService          = keyService;
     _alterationService   = alterationService;
     _chordQualityService = chordQualityService;
     _chordService        = chordService;
     _noteService         = noteService;
 }
 public BarlineRenderStrategy(IMeasurementService measurementService, IAlterationService alterationService, IScoreService scoreService)
 {
     this.measurementService = measurementService;
     this.alterationService  = alterationService;
     this.scoreService       = scoreService;
 }
예제 #4
0
 public AlterationFinishedIntegrationEventHandler(IAlterationService alterationService, ILogger <AlterationFinishedIntegrationEventHandler> logger)
 {
     _alterationService = alterationService;
     _logger            = logger;
 }
예제 #5
0
 public AlterationsController(IAlterationService service, ITopicClient client)
 {
     _service = service;
     _client  = client;
 }
 public OrderPaidIntegrationEventHandler(IAlterationService alterationService, ILogger <OrderPaidIntegrationEventHandler> logger)
 {
     _alterationService = alterationService;
     _logger            = logger;
 }
예제 #7
0
 public OrdersController(IEventBus eventBus, IAlterationService alterationService, ILogger <OrdersController> logger)
 {
     _eventBus          = eventBus;
     _alterationService = alterationService;
     _logger            = logger;
 }