コード例 #1
0
 public CloseBookmakingCommandHandler(
     IBookMatchRepository bookMatchRepository,
     IBusPublisher busPublisher)
 {
     _bookMatchRepository = bookMatchRepository;
     _busPublisher        = busPublisher;
 }
コード例 #2
0
 public BookMatchCommandHandler(IBookMatchRepository bookMatchRepository)
 {
     _bookMatchRepository = bookMatchRepository;
 }
コード例 #3
0
 public ChangeBookValueCommandHandler(IBookMatchRepository bookMatchRepository)
 {
     _bookMatchRepository = bookMatchRepository;
 }