public CustomerEquipmentRow AddCustomerEquipmentRow(string SERIAL_NUMBER, string ITEM_NUMBER, string PORT_TYPE)
            {
                CustomerEquipmentRow rowCustomerEquipmentRow = ((CustomerEquipmentRow)(this.NewRow()));

                rowCustomerEquipmentRow.ItemArray = new object[] {
                    SERIAL_NUMBER,
                    ITEM_NUMBER,
                    PORT_TYPE
                };
                this.Rows.Add(rowCustomerEquipmentRow);
                return(rowCustomerEquipmentRow);
            }
 public void RemoveCustomerEquipmentRow(CustomerEquipmentRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddCustomerEquipmentRow(CustomerEquipmentRow row)
 {
     this.Rows.Add(row);
 }
 public CustomerEquipmentRowChangeEvent(CustomerEquipmentRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }