Esempio n. 1
0
 public StockCommandHandler(
     IStockGroupRepository stockGroupRepository,
     IEventBus eventBus,
     IStockExchangeService stockExchangeService,
     IWalletRepository walletRepository,
     ICustomEventStore eventStore,
     IStockGroupService stockGroupService)
 {
     _stockGroupRepository = stockGroupRepository;
     _eventBus             = eventBus;
     _stockExchangeService = stockExchangeService;
     _walletRepository     = walletRepository;
     _eventStore           = eventStore;
     _stockGroupService    = stockGroupService;
 }
Esempio n. 2
0
 public StockEventHandler(ICustomEventStore eventStore)
 {
     _eventStore = eventStore;
 }
Esempio n. 3
0
 public StockGroupService(ICustomEventStore eventStore)
 {
     _eventStore = eventStore;
 }
Esempio n. 4
0
 public StockGroupEventHandler(ICustomEventStore eventStore,
                               IStockGroupRepository stockGroupRepository)
 {
     _eventStore           = eventStore;
     _stockGroupRepository = stockGroupRepository;
 }
Esempio n. 5
0
 public WalletEventHandler(ICustomEventStore eventStore)
 {
     _eventStore = eventStore;
 }