public NotaCreditoLineaRow AddNotaCreditoLineaRow(string Cantidad, string Descripcion, string TotalLinea, NotaCreditoRow parentNotaCreditoRowByNotaCredito_NotaCreditoLinea, string IGV, string DescuentoUnit, string PrecioUnit) {
     NotaCreditoLineaRow rowNotaCreditoLineaRow = ((NotaCreditoLineaRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Cantidad,
             Descripcion,
             TotalLinea,
             null,
             IGV,
             DescuentoUnit,
             PrecioUnit};
     if ((parentNotaCreditoRowByNotaCredito_NotaCreditoLinea != null)) {
         columnValuesArray[3] = parentNotaCreditoRowByNotaCredito_NotaCreditoLinea[0];
     }
     rowNotaCreditoLineaRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowNotaCreditoLineaRow);
     return rowNotaCreditoLineaRow;
 }
 public void AddNotaCreditoRow(NotaCreditoRow row) {
     this.Rows.Add(row);
 }
 public void RemoveNotaCreditoRow(NotaCreditoRow row) {
     this.Rows.Remove(row);
 }
 public NotaCreditoRowChangeEvent(NotaCreditoRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }