public TextualRow(TextualTable parentTable) { ParentTable = parentTable; Values = new Dictionary <string, object>(); ValidateWithParent(); }
public void AddTable(TextualTable table) { if (Tables.ContainsKey(table.Name)) { throw new TableAlreadyExistsException(this, table.Name); } Tables.Add(table.Name, table); }
public TextualRow(TextualRow copy, TextualTable newParent = null) { ParentTable = newParent ?? copy.ParentTable; Values = new Dictionary <string, object>(copy.Values); }