Esempio n. 1
0
 public SpecialLiquidationService(
     ICqrsSender cqrsSender,
     IDateService dateService,
     IThreadSwitcher threadSwitcher,
     SpecialLiquidationSettings specialLiquidationSettings,
     CqrsContextNamesSettings cqrsContextNamesSettings)
 {
     _cqrsSender                 = cqrsSender;
     _dateService                = dateService;
     _threadSwitcher             = threadSwitcher;
     _specialLiquidationSettings = specialLiquidationSettings;
     _cqrsContextNamesSettings   = cqrsContextNamesSettings;
 }
Esempio n. 2
0
 public ManualRfqService(
     ICqrsSender cqrsSender,
     IDateService dateService,
     SpecialLiquidationSettings specialLiquidationSettings,
     CqrsContextNamesSettings cqrsContextNamesSettings,
     IQuoteCacheService quoteCacheService,
     IOperationExecutionInfoRepository operationExecutionInfoRepository,
     ILog log)
 {
     _cqrsSender  = cqrsSender;
     _dateService = dateService;
     _specialLiquidationSettings       = specialLiquidationSettings;
     _cqrsContextNamesSettings         = cqrsContextNamesSettings;
     _quoteCacheService                = quoteCacheService;
     _operationExecutionInfoRepository = operationExecutionInfoRepository;
     _log = log;
 }