public StockMarketServiceFixture(ITestOutputHelper testOutput)
        {
            _testOutput = testOutput;
            var settings = ConfigurationSingletonFactory.GetStockMarketSettings();

            _stockMarketServiceCsv = new StockMarketService(new System.Net.Http.HttpClient(), settings);

            settings.Value.Format   = "json";
            _stockMarketServiceJson = new StockMarketService(new System.Net.Http.HttpClient(), settings);
        }
 public RabbitMqServiceFixture(ITestOutputHelper testOutput)
 {
     _testOutput      = testOutput;
     _rabbitMeService = new RabbitMqService(ConfigurationSingletonFactory.GetMessageBrokerSettings(), null);
 }