public CuentasRow AddCuentasRow(long IdCuenta, System.DateTime FechaCreacion, long IdConexionCreacion, System.Byte[] UltimaModificacion, long IdConexionUltimaModificacion, System.Guid RowId)
            {
                CuentasRow rowCuentasRow = ((CuentasRow)(this.NewRow()));

                rowCuentasRow.ItemArray = new object[] {
                    IdCuenta,
                    FechaCreacion,
                    IdConexionCreacion,
                    UltimaModificacion,
                    IdConexionUltimaModificacion,
                    RowId
                };
                this.Rows.Add(rowCuentasRow);
                return(rowCuentasRow);
            }
 public CuentasRowChangeEvent(CuentasRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveCuentasRow(CuentasRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddCuentasRow(CuentasRow row)
 {
     this.Rows.Add(row);
 }
 public CuentasRowChangeEvent(CuentasRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }