Example #1
0
 public PropertyDataItem(ServiceInfo service, Table table, Column column)
     : base(GetUniqueId(service.Name, table.ActualName, column.ActualName), column.ActualName, GetColumnSummary(column, table.GetKeyNames()), null, null)
 {
 }
Example #2
0
 public ResultDataItem(IDictionary<string, object> results, Table table)
     : base(Guid.NewGuid().ToString(), GetKeySummary(results, table.GetKeyNames()), GetResultSummary(results, table.GetKeyNames()), null, null)
 {
     this.Keys = table.GetKeyNames();
     this.Results = results;
 }