예제 #1
0
 public Application(ILog logger, Settings settings,
                    CurrentApplicationInfo applicationInfo,
                    IAccountMarginEventsRepository accountMarginEventsRepository,
                    ISlackNotificationsSender slackNotificationsSender)
     : base(logger, slackNotificationsSender, applicationInfo)
 {
     _settings = settings;
     _accountMarginEventsRepository = accountMarginEventsRepository;
 }
예제 #2
0
 public Application(
     RabbitMqCorrelationManager correlationManager,
     ILoggerFactory loggerFactory,
     ILog logger,
     Settings settings,
     CurrentApplicationInfo applicationInfo,
     IAccountMarginEventsRepository accountMarginEventsRepository,
     ISlackNotificationsSender slackNotificationsSender)
     : base(correlationManager, loggerFactory, logger, slackNotificationsSender, applicationInfo)
 {
     _settings = settings;
     _accountMarginEventsRepository = accountMarginEventsRepository;
 }