Beispiel #1
0
 public TradingConditionsManager(
     ITradingConditionsApi tradingConditions,
     TradingConditionsCacheService tradingConditionsCacheService,
     IConsole console,
     IConvertService convertService)
 {
     _tradingConditionsCacheService = tradingConditionsCacheService;
     _console           = console;
     _convertService    = convertService;
     _tradingConditions = tradingConditions;
 }
 public TradingConditionsManager(
     ITradingConditionRepository repository,
     TradingConditionsCacheService tradingConditionsCacheService,
     IConsole console,
     AccountGroupManager accountGroupManager,
     IClientNotifyService clientNotifyService)
 {
     _repository = repository;
     _tradingConditionsCacheService = tradingConditionsCacheService;
     _console             = console;
     _accountGroupManager = accountGroupManager;
     _clientNotifyService = clientNotifyService;
 }