internal void CopyValues(IDataReader source) { if (source == null) { return; } _record.CopyValues(source); }
protected override void DataPortal_Update() { if (!IsDirty) { return; } MonitorRecord obj = Session().Get <MonitorRecord>(Oid); obj.CopyValues(Base.Record); Session().Update(obj); MarkOld(); }
/// <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(Monitors 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; MonitorRecord obj = Session().Get <MonitorRecord>(Oid); obj.CopyValues(this._base.Record); Session().Update(obj); MarkOld(); }