internal void CopyValues(IDataReader source) { if (source == null) { return; } _record.CopyValues(source); }
internal void Update(TipoAuditoria parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } try { SessionCode = parent.SessionCode; CriterioRecord obj = Session().Get <CriterioRecord>(Oid); obj.CopyValues(this.Base.Record); Session().Update(obj); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } MarkOld(); }