public long ProcessQuery()
        {
            string response = _client.GetResultString();
            string result   = _parser.Parse(response);

            return(long.Parse(result.Replace(",", "").Replace(".", "")));
        }
        public double ProcessQuery(IQuery query)
        {
            var response = _client.GetResultString();
            var result   = Parser.Parse(response);

            return(long.Parse(result.Replace(",", "").Replace(".", "")));
        }