public static void GetPersonSettings()
        {
            var result = _appSettingsService.GetConfigurationSection <PersonSettings>("PersonSettings");

            Console.WriteLine(result.QueryResult.DeveloperName);
            Console.WriteLine(result.QueryResult.Year);
            Console.WriteLine(result.QueryResult.School);
        }