public JsonResult Get()
        {
            var data = new
            {
                TestConfigStarshipName = _configurationGeter["ZHS.Configuration.Core.TestConfig:starship:name"],
                FromClass   = _testConfig,
                FromGetter  = _configurationGeter.Get <TestConfig>(),
                FromLocator = ConfigurationGeterLocator.Current.Get <TestConfig>()
            };

            return(new JsonResult(data));
        }
 public TConfig Get <TConfig>(String key)
 {
     return(_currentServiceProvider.Get <TConfig>(key));
 }