1
0

CustomConfig.cs 347 B

12345678910111213141516
  1. using System.Configuration;
  2. namespace OhmGraphite.Test
  3. {
  4. class CustomConfig : IAppConfig
  5. {
  6. private readonly Configuration _config;
  7. public CustomConfig(Configuration config)
  8. {
  9. _config = config;
  10. }
  11. public string this[string name] => _config.AppSettings.Settings[name]?.Value;
  12. }
  13. }