public COBRANZARow AddCOBRANZARow(string ID_VENTA, decimal TOTAL_SALDO, string TIPO_COBRANZA, System.DateTime FECHA, string ZONA, string CLIENTE, string TIPO_CLIENTE, string PRODUCTO) { COBRANZARow rowCOBRANZARow = ((COBRANZARow)(this.NewRow())); object[] columnValuesArray = new object[] { ID_VENTA, TOTAL_SALDO, TIPO_COBRANZA, FECHA, ZONA, CLIENTE, TIPO_CLIENTE, PRODUCTO }; rowCOBRANZARow.ItemArray = columnValuesArray; this.Rows.Add(rowCOBRANZARow); return(rowCOBRANZARow); }
public COBRANZARowChangeEvent(COBRANZARow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveCOBRANZARow(COBRANZARow row) { this.Rows.Remove(row); }
public void AddCOBRANZARow(COBRANZARow row) { this.Rows.Add(row); }