public MatchingEngineRoutesManager(
     MatchingEngineRoutesCacheService routesCacheService,
     ITradingRoutesApi routesApi,
     IAssetPairsCache assetPairsCache,
     IAccountsCacheService accountsCacheService,
     //IRiskSystemCommandsLogRepository riskSystemCommandsLogRepository,
     ILog log,
     IConvertService convertService)
 {
     _routesCacheService = routesCacheService;
     _routesApi          = routesApi;
     _assetPairsCache    = assetPairsCache;
     //_riskSystemCommandsLogRepository = riskSystemCommandsLogRepository;
     _log            = log;
     _convertService = convertService;
 }
Exemplo n.º 2
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;
 }