internal void Update(TipoAuditoria 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; OidTipoAuditoria = parent.Oid; try { ValidationRules.CheckRules(); if (!IsValid) { throw new iQValidationException(moleQule.Library.Resources.Messages.GENERIC_VALIDATION_ERROR); } CuestionRecord obj = parent.Session().Get <CuestionRecord>(Oid); obj.CopyValues(this.Base.Record); parent.Session().Update(obj); _cuestiones.Update(this); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } MarkOld(); }
internal void Insert(TipoAuditoria parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } try { parent.Session().Save(this.Base.Record); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } MarkOld(); }