protected override void DataPortal_Update() { if (!IsDirty) { return; } GrantRecord obj = Session().Get <GrantRecord>(Oid); obj.CopyValues(this._base.Record); Session().Update(obj); MarkOld(); }
public virtual void CopyValues(GrantRecord source) { if (source == null) { return; } Oid = source.Oid; _serial = source.Serial; _codigo = source.Codigo; _estado = source.Estado; _nombre = source.Nombre; _cuenta_contable = source.CuentaContable; _observaciones = source.Observaciones; }
/// <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(Ayudas parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } ValidationRules.CheckRules(); if (!IsValid) { throw new iQValidationException(Library.Resources.Messages.GENERIC_VALIDATION_ERROR); } SessionCode = parent.SessionCode; GrantRecord obj = Session().Get <GrantRecord>(Oid); obj.CopyValues(this._base.Record); Session().Update(obj); MarkOld(); }