protected override void DataPortal_Update() { if (!IsDirty) { return; } WeighingRecord obj = Session().Get <WeighingRecord>(Oid); obj.CopyValues(this._base.Record); Session().Update(obj); MarkOld(); }
public virtual void CopyValues(WeighingRecord source) { if (source == null) { return; } Oid = source.Oid; _serial = source.Serial; _codigo = source.Codigo; _estado = source.Estado; _fecha = source.Fecha; _descripcion = source.Descripcion; _bruto = source.Bruto; _neto = source.Neto; _tara = source.Tara; _observaciones = source.Observaciones; }
/// <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(Pesajes 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; WeighingRecord obj = Session().Get <WeighingRecord>(Oid); obj.CopyValues(this._base.Record); Session().Update(obj); MarkOld(); }