internal void Update(Cargos parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } SessionCode = parent.SessionCode; try { ValidationRules.CheckRules(); if (!IsValid) { throw new iQValidationException(moleQule.Library.Resources.Messages.GENERIC_VALIDATION_ERROR); } JobRecord obj = Session().Get <JobRecord>(Oid); obj.CopyValues(this._base.Record); Session().Update(obj); } catch (Exception ex) { throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex)); } MarkOld(); }
public virtual void CopyValues(JobRecord source) { if (source == null) { return; } Oid = source.Oid; _valor = source.Valor; }