Esempio n. 1
0
            public AddressMapRow AddAddressMapRow(int PlacementId, int ColumnType, int DocumentVersion, int RowIndex, int ColumnIndex)
            {
                AddressMapRow rowAddressMapRow = ((AddressMapRow)(this.NewRow()));

                rowAddressMapRow.ItemArray = new object[] {
                    PlacementId,
                    ColumnType,
                    DocumentVersion,
                    RowIndex,
                    ColumnIndex
                };
                this.Rows.Add(rowAddressMapRow);
                return(rowAddressMapRow);
            }
Esempio n. 2
0
 public AddressMapRowChangeEvent(AddressMapRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void RemoveAddressMapRow(AddressMapRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void AddAddressMapRow(AddressMapRow row)
 {
     this.Rows.Add(row);
 }