using Abp.Dependency; using IwbZero.Expr; namespace WeEngine.Functions { public interface IFunction: ISingletonDependency { string Invoke(ExprObject exprObj); } }