Example #1
0
        public T GetConfiguration <T>(ConfigSystemType systemType)
        {
            var configString = GetConfiguration(systemType);
            T   result       = JsonConvert.DeserializeObject <T>(configString);

            return(result);
        }
Example #2
0
 public string GetConfiguration(ConfigSystemType systemType)
 {
     return(dictionary[systemType]);
 }