using System.Collections.Generic; using NTERA.Engine.Compiler; namespace NTERA.Engine.Runtime { public interface IExecutionProvider { ICollection DefinedProcedures { get; } ICollection DefinedFunctions { get; } ICollection DefinedConstants { get; } CSVDefinition CSVDefinition { get; } IEnumerable GetExecutionNodes(FunctionDefinition function); } }