internal void CopyValues(IDataReader source) { if (source == null) { return; } _record.CopyValues(source); }
/// <summary> /// Actualiza un registro en la base de datos /// </summary> /// <param name="parent">Objeto padre</param> internal void Update(Monitor parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } //Debe obtener la sesion del padre pq el objeto es padre a su vez SessionCode = parent.SessionCode; OidMonitor = parent.Oid; ValidationRules.CheckRules(); if (!IsValid) { throw new iQValidationException(Library.Resources.Messages.GENERIC_VALIDATION_ERROR); } MonitorLineRecord obj = parent.Session().Get <MonitorLineRecord>(Oid); obj.CopyValues(Base.Record); parent.Session().Update(obj); MarkOld(); }
protected override void DataPortal_Update() { if (!IsDirty) { return; } MonitorLineRecord obj = Session().Get <MonitorLineRecord>(Oid); obj.CopyValues(this.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(MonitorLines 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; MonitorLineRecord obj = Session().Get <MonitorLineRecord>(Oid); obj.CopyValues(Base.Record); Session().Update(obj); MarkOld(); }