public AllotmentEventUpdateSaga(
     IEthereumTransactionService transactionService,
     IAllotmentEventService allotmentEventService)
 {
     _transactionService    = transactionService;
     _allotmentEventService = allotmentEventService;
 }
Example #2
0
 public AllotmentEventsController(IAllotmentEventService allotmentEventService, IMessageSession messageSession, IClock clock)
 {
     _allotmentEventService = allotmentEventService;
     _messageSession        = messageSession;
     _clock = clock;
 }
Example #3
0
 public AllotmentEventPublishSaga(IAllotmentEventService allotmentEventService, IEthereumTransactionService ethereumTransactionService)
 {
     _allotmentEventService      = allotmentEventService;
     _ethereumTransactionService = ethereumTransactionService;
 }