Esempio n. 1
0
 public CloseBookmakingCommandHandler(
     IBookMatchRepository bookMatchRepository,
     IBusPublisher busPublisher)
 {
     _bookMatchRepository = bookMatchRepository;
     _busPublisher        = busPublisher;
 }
 public BookMatchCommandHandler(IBookMatchRepository bookMatchRepository)
 {
     _bookMatchRepository = bookMatchRepository;
 }
Esempio n. 3
0
 public ChangeBookValueCommandHandler(IBookMatchRepository bookMatchRepository)
 {
     _bookMatchRepository = bookMatchRepository;
 }