35 lines
855 B
C#
Executable File
35 lines
855 B
C#
Executable File
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace MarketData.Configuration
|
|
{
|
|
/// <summary>
|
|
/// This is a class that allows my legacy code to interact with the jsonsettings.config without requiring a complete rewrite of everything into dependency injection
|
|
/// The class need to be instantiated at program entry point and initilized with IConfigurationRoot
|
|
/// </summary>
|
|
public class GlobalConfig
|
|
{
|
|
private static GlobalConfig globalConfig = default;
|
|
|
|
private GlobalConfig()
|
|
{
|
|
}
|
|
|
|
public static GlobalConfig Instance
|
|
{
|
|
get
|
|
{
|
|
lock (typeof(GlobalConfig))
|
|
{
|
|
if (null == globalConfig)
|
|
{
|
|
globalConfig = new GlobalConfig();
|
|
}
|
|
return globalConfig;
|
|
}
|
|
}
|
|
}
|
|
|
|
public IConfiguration Configuration { get; set; } = default;
|
|
}
|
|
}
|