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