public LiveRoundtripExitOrderExecutedIntegrationEventHandler(IRoundtripRepository roundtripRepository, IInvestingIntegrationEventService investingIntegrationEventService)
 {
     _roundtripRepository = roundtripRepository ?? throw new ArgumentNullException(nameof(roundtripRepository));
     _investingIntegrationEventService = investingIntegrationEventService ?? throw new ArgumentNullException(nameof(investingIntegrationEventService));
 }
Ejemplo n.º 2
0
 public CandleChartUpdatedIntegrationEventHandler(IInvestmentRepository investmentRepository, IInvestingIntegrationEventService investingIntegrationEventService)
 {
     _investmentRepository             = investmentRepository ?? throw new ArgumentNullException(nameof(investmentRepository));
     _investingIntegrationEventService = investingIntegrationEventService ?? throw new ArgumentNullException(nameof(investingIntegrationEventService));
 }
 public InvestmentSettledDomainEventHandler(IInvestingIntegrationEventService investingIntegrationEventService)
 {
     _investingIntegrationEventService = investingIntegrationEventService ?? throw new ArgumentNullException(nameof(investingIntegrationEventService));
 }
 public RoundtripEntryOrderSubmittedDomainEventHandler(IInvestmentRepository investmentRepository, IRoundtripRepository roundtripRepository, IInvestingIntegrationEventService investingIntegrationEventService)
 {
     _investingIntegrationEventService = investingIntegrationEventService ?? throw new ArgumentNullException(nameof(investingIntegrationEventService));
 }
Ejemplo n.º 5
0
 public RoundtripForcedSellingDomainEventHandler(IInvestmentRepository investmentRepository, IRoundtripRepository roundtripRepository, IInvestingIntegrationEventService investingIntegrationEventService)
 {
     _investmentRepository             = investmentRepository ?? throw new ArgumentNullException(nameof(investmentRepository));
     _roundtripRepository              = roundtripRepository ?? throw new ArgumentNullException(nameof(roundtripRepository));
     _investingIntegrationEventService = investingIntegrationEventService ?? throw new ArgumentNullException(nameof(investingIntegrationEventService));
 }
 public RoundtripTargetPriceHitDomainEventHandler(IRoundtripRepository roundtripRepository, IInvestingIntegrationEventService investingIntegrationEventService)
 {
     _roundtripRepository = roundtripRepository ?? throw new ArgumentNullException(nameof(roundtripRepository));
     _investingIntegrationEventService = investingIntegrationEventService ?? throw new ArgumentNullException(nameof(investingIntegrationEventService));
 }