Ejemplo n.º 1
0
 public JournalEntry(JournalCommandCode code, RowId rowid)
     : this()
 {
     this.code = code;
     this.rowid = rowid;
     id = -1;
     forTable = false;
     forRow = true;
 }
Ejemplo n.º 2
0
 public JournalEntry(JournalCommandCode code, long id)
     : this()
 {
     this.code = code;
     this.id = id;
     rowid = null;
     forTable = true;
     forRow = false;
 }