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