Beispiel #1
0
        /// <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(IRPFs parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            try
            {
                ValidationRules.CheckRules();

                if (!IsValid)
                {
                    throw new iQValidationException(moleQule.Library.Resources.Messages.GENERIC_VALIDATION_ERROR);
                }

                SessionCode = parent.SessionCode;
                IRPFRecord obj = Session().Get <IRPFRecord>(Oid);
                obj.CopyValues(this._base.Record);
                Session().Update(obj);
            }
            catch (Exception ex)
            {
                throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex));
            }

            MarkOld();
        }
Beispiel #2
0
        public virtual void CopyValues(IRPFRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid            = source.Oid;
            _nombre        = source.Nombre;
            _porcentaje    = source.Porcentaje;
            _observaciones = source.Observaciones;
        }
Beispiel #3
0
 protected override void DataPortal_Update()
 {
     if (IsDirty)
     {
         try
         {
             IRPFRecord obj = Session().Get <IRPFRecord>(Oid);
             obj.CopyValues(this._base.Record);
             Session().Update(obj);
             MarkOld();
         }
         catch (Exception ex)
         {
             throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex));
         }
     }
 }