コード例 #1
0
 public DiaryController(IMapper mapper, IDiaryNoteRepository repository, EventBusRabbitMqProducer eventBus)
 {
     _mapper     = mapper;
     _eventBus   = eventBus;
     _repository = repository;
 }
コード例 #2
0
 public EventBusRabbitMqConsumer(IRabbitMqConnection connection, IDiaryNoteRepository repository)
 {
     _connection = connection;
     _repository = repository;
 }