Example #1
0
 public MatchingEngineRoutesManager(
     MatchingEngineRoutesCacheService routesCacheService,
     IMatchingEngineRoutesRepository repository,
     IAssetPairsCache assetPairsCache,
     ITradingConditionsCacheService tradingConditionsCacheService,
     IAccountsCacheService accountsCacheService,
     IRiskSystemCommandsLogRepository riskSystemCommandsLogRepository,
     ILog log)
 {
     _routesCacheService              = routesCacheService;
     _repository                      = repository;
     _assetPairsCache                 = assetPairsCache;
     _tradingConditionsCacheService   = tradingConditionsCacheService;
     _accountsCacheService            = accountsCacheService;
     _riskSystemCommandsLogRepository = riskSystemCommandsLogRepository;
     _log = log;
 }
Example #2
0
 public RoutesController(IMatchingEngineRoutesRepository routesRepository)
 {
     _routesRepository = routesRepository;
 }