Ejemplo n.º 1
0
        public TextualRow(TextualTable parentTable)
        {
            ParentTable = parentTable;
            Values      = new Dictionary <string, object>();

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