예제 #1
0
            public AddressTypeListTableRow AddAddressTypeListTableRow(string AddressType, System.DateTime LastUpdated, string UserID, string RowVersion)
            {
                AddressTypeListTableRow rowAddressTypeListTableRow = ((AddressTypeListTableRow)(this.NewRow()));

                rowAddressTypeListTableRow.ItemArray = new object[] {
                    AddressType,
                    LastUpdated,
                    UserID,
                    RowVersion
                };
                this.Rows.Add(rowAddressTypeListTableRow);
                return(rowAddressTypeListTableRow);
            }
예제 #2
0
 public AddressTypeListTableRowChangeEvent(AddressTypeListTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveAddressTypeListTableRow(AddressTypeListTableRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddAddressTypeListTableRow(AddressTypeListTableRow row)
 {
     this.Rows.Add(row);
 }