// GET api/values
 public OrderController(OrderbookService orderbookService, ConnectionFactory rabbitConnection, ExchangeContext repository)
 {
     _orderbookService = orderbookService;
     _rabbitConnection = rabbitConnection;
     _repository       = repository;
 }
 // GET api/values
 public Exchange(OrderbookService orderbookService)
 {
     _orderbookService = orderbookService;
 }
Beispiel #3
0
 // GET api/values
 public OrderController(OrderbookService orderbookService)
 {
     _orderbookService = orderbookService;
 }