internal void CopyValues(IDataReader source) { if (source == null) { return; } _record.CopyValues(source); _impuesto = Format.DataReader.GetString(source, "IMPUESTO"); _p_impuesto = Format.DataReader.GetDecimal(source, "P_IMPUESTO"); }
/// <summary> /// Actualiza el registro en la base de datos /// </summary> /// <param name="parent">Lista padre</param> /// <remarks>La utiliza la BusinessListBaseEx correspondiente para actualizar elementos<remarks/> internal void Update(Series parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } try { ValidationRules.CheckRules(); if (!IsValid) { throw new iQValidationException(moleQule.Resources.Messages.GENERIC_VALIDATION_ERROR); } SessionCode = parent.SessionCode; SerieRecord obj = Session().Get <SerieRecord>(Oid); obj.CopyValues(Base.Record); Session().Update(obj); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } MarkOld(); }
protected override void DataPortal_Update() { if (IsDirty) { try { SerieRecord obj = Session().Get <SerieRecord>(Oid); obj.CopyValues(Base.Record); Session().Update(obj); MarkOld(); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } } }