예제 #1
0
        public TableStub AddStubbedTable(string tableName)
        {
            TableStub newTable = new TableStub(this, tableName);

            Tables.Add(newTable);
            return(newTable);
        }
예제 #2
0
 public TableStub AddStubbedTable(TableStub table)
 {
     table.db = this;
     Tables.Add(table);
     return(table);
 }