Beispiel #1
0
 public OrderCommandHandler(IBitfinexRepository bitfinexRepository, IUnitOfWork uow, IMediatorHandler bus, INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     _bitfinexRepository = bitfinexRepository;
     Bus = bus;
 }
Beispiel #2
0
 public BitfinexAppService(IMapper mapper, IMediatorHandler Bus, IBitfinexRepository bitfinexRepository)
 {
     _mapper             = mapper;
     _Bus                = Bus;
     _bitfinexRepository = bitfinexRepository;
 }