Esempio n. 1
0
        private void AddNewExpression()
        {
            readIndex++;

            Expression expr = GetNewExpression();

            database.AddExpression(expr);
        }
Esempio n. 2
0
 public void AddExpression(string[] keywords, string[] responses, string[] contexts,
                           ExpressionType type, ExpressionLocation location)
 {
     dataBase.AddExpression(keywords, responses, contexts, type, location);
 }