public ResultTable(IDatabase database, Dictionary <string, IColumn> columns = null) : base(database, columns) { Database = (RunDatabase)database; GetOrBuildColumns(); }
internal Rule(RunDatabase database, Rule other) : this(database.Rule) { CopyFrom(other); }
internal Result(RunDatabase database, Result other) : this(database.Result) { CopyFrom(other); }
internal static Rule Copy(RunDatabase database, Rule other) { return(other == null ? null : new Rule(database, other)); }
internal static Result Copy(RunDatabase database, Result other) { return(other == null ? null : new Result(database, other)); }