IFunction.cs 186 B

12345678910
  1. using Abp.Dependency;
  2. using IwbZero.Expr;
  3. namespace WeEngine.Functions
  4. {
  5. public interface IFunction: ISingletonDependency
  6. {
  7. string Invoke(ExprObject exprObj);
  8. }
  9. }