protected override void OnStarted()
 {
     _logger.LogInformation("OnStarted has been called.");
     _client.Start();
     _myNoSqlClientLifeTime.Start();
     _logger.LogInformation("MyServiceBusTcpClient is started.");
 }
 protected override void OnStarted()
 {
     _logger.LogInformation("OnStarted has been called");
     _myNoSqlClient.Start();
     _logger.LogInformation("MyNoSqlTcpClient is started");
     _myServiceBusTcpClient.Start();
     _logger.LogInformation("MyServiceBusTcpClient is started");
     _depositsProcessingJob.Start();
     _logger.LogInformation("DepositsProcessingJob is started");
     _bitGoDepositAddressesGenerationJob.Start();
     _logger.LogInformation("BitGoDepositAddressesGenerationJob is started");
 }
        protected override void OnStarted()
        {
            _logger.LogInformation("OnStarted has been called.");
            _hedgeSettingsManager.Start();
            _marketMakerSettingsManager.Start();
            _portfolioManager.Start();


            _myNoSqlClient.Start();
            _myServiceBusTcpClient.Start();


            _marketMakerJob.Start();
        }