public ExecutionEngine(IScriptContainer container, IScriptTable table = null, InteropService service = null) { this.ScriptContainer = container; this.table = table; this.service = service ?? new InteropService(); }
public ExecutionEngine(IScriptContainer container, ICrypto crypto, IScriptTable table = null, InteropService service = null) { TR.Enter(); this.ScriptContainer = container; this.Crypto = crypto; this.table = table; this.Service = service ?? new InteropService(); TR.Exit(); }