public void AddDESTINATION_CODERow(DESTINATION_CODERow row) {
     this.Rows.Add(row);
 }
 public BOXRow AddBOXRow(string BOX_ID, double BOX_WEIGHT, string BOX_WEIGHT_UOM, string PACK_ID, string HP_SO, string DUTY_CODE, DESTINATION_CODERow parentDESTINATION_CODERowByDESTINATION_CODE_BOX) {
     BOXRow rowBOXRow = ((BOXRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             BOX_ID,
             BOX_WEIGHT,
             BOX_WEIGHT_UOM,
             PACK_ID,
             HP_SO,
             DUTY_CODE,
             null,
             null};
     if ((parentDESTINATION_CODERowByDESTINATION_CODE_BOX != null)) {
         columnValuesArray[7] = parentDESTINATION_CODERowByDESTINATION_CODE_BOX[3];
     }
     rowBOXRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowBOXRow);
     return rowBOXRow;
 }
 public DESTINATION_CODERowChangeEvent(DESTINATION_CODERow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveDESTINATION_CODERow(DESTINATION_CODERow row) {
     this.Rows.Remove(row);
 }