Exemplo n.º 1
0
 public RowCursor(MockTable table)
 {
     this.table = table;
     rowCount = table.rows.Count;
     index = -1;
 }
Exemplo n.º 2
0
 public ITable CreateTable(TableName tableName)
 {
     MockTable table = new MockTable(tableName);
     tables.Add(tableName, table);
     return table;
 }