public Expression GetExpression()
 {
     try
     {
         Parser.Parser parser = new Parser.Parser(_expressionStr);
         return(parser.CallExpr());
     }
     catch (Exception)
     {
         throw new Exception("error");
     }
 }