Example #1
0
 public static Table CreateTable(string id, string name)
 {
     Table table = new Table();
     table.Id = id;
     table.Name = name;
     return table;
 }
Example #2
0
 public void AddToTables(Table table)
 {
     base.AddObject("Tables", table);
 }