Ejemplo n.º 1
0
            public LocalMapRow AddLocalMapRow(int ExecutionId, int DocumentVersion, int RowIndex)
            {
                LocalMapRow rowLocalMapRow = ((LocalMapRow)(this.NewRow()));

                rowLocalMapRow.ItemArray = new object[] {
                    ExecutionId,
                    DocumentVersion,
                    RowIndex
                };
                this.Rows.Add(rowLocalMapRow);
                return(rowLocalMapRow);
            }
Ejemplo n.º 2
0
 public LocalMapRowChangeEvent(LocalMapRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveLocalMapRow(LocalMapRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddLocalMapRow(LocalMapRow row)
 {
     this.Rows.Add(row);
 }