コード例 #1
0
 /// <summary></summary>
 public StockGroupsController(
     IUnitOfWorkAsync unitOfWorkAsync,
     IStockGroupService service)
 {
     _unitOfWorkAsync = unitOfWorkAsync;
     _service         = service;
 }
コード例 #2
0
ファイル: StockCommandHandler.cs プロジェクト: mgce/stocqres
 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;
 }