예제 #1
0
 public ResultTable(IDatabase database, Dictionary <string, IColumn> columns = null) : base(database, columns)
 {
     Database = (RunDatabase)database;
     GetOrBuildColumns();
 }
예제 #2
0
파일: Rule.cs 프로젝트: MShaffar19/bion
 internal Rule(RunDatabase database, Rule other) : this(database.Rule)
 {
     CopyFrom(other);
 }
예제 #3
0
 internal Result(RunDatabase database, Result other) : this(database.Result)
 {
     CopyFrom(other);
 }
예제 #4
0
파일: Rule.cs 프로젝트: MShaffar19/bion
 internal static Rule Copy(RunDatabase database, Rule other)
 {
     return(other == null ? null : new Rule(database, other));
 }
예제 #5
0
 internal static Result Copy(RunDatabase database, Result other)
 {
     return(other == null ? null : new Result(database, other));
 }