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