public B GetValue <B>(string query)
        {
            string JsonFile = File.ReadAllText(Path.Combine(Properties.DataFilePath, Properties.DataFile));

            return(QueryParser.GetValue <B>(query, JsonConvert.DeserializeObject(JsonFile)));
        }