public void AddLateralDetailsRow(LateralDetailsRow row)
 {
     this.Rows.Add(row);
 }
 public void RemoveLateralDetailsRow(LateralDetailsRow row)
 {
     this.Rows.Remove(row);
 }
 public LateralDetailsRowChangeEvent(LateralDetailsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }