public TableStub AddStubbedTable(string tableName) { TableStub newTable = new TableStub(this, tableName); Tables.Add(newTable); return(newTable); }
public TableStub AddStubbedTable(TableStub table) { table.db = this; Tables.Add(table); return(table); }