1
0

AppConfigManager.cs 195 B

123456789
  1. using System.Configuration;
  2. namespace OhmGraphite
  3. {
  4. class AppConfigManager : IAppConfig
  5. {
  6. public string this[string name] => ConfigurationManager.AppSettings[name];
  7. }
  8. }