/// <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(LineaInventarios 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.Resources.Messages.GENERIC_VALIDATION_ERROR);
                }

                SessionCode = parent.SessionCode;
                LineaInventarioRecord obj = Session().Get <LineaInventarioRecord>(Oid);
                obj.CopyValues(this._base.Record);
                Session().Update(obj);
            }
            catch (Exception ex)
            {
                iQExceptionHandler.TreatException(ex);
            }

            MarkOld();
        }
        /// <summary>
        /// Actualiza un registro en la base de datos
        /// </summary>
        /// <param name="parent">Objeto padre</param>
        internal void Update(InventarioAlmacen 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;

            OidInventario = parent.Oid;

            try
            {
                ValidationRules.CheckRules();

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

                LineaInventarioRecord obj = parent.Session().Get <LineaInventarioRecord>(Oid);
                obj.CopyValues(this._base.Record);
                parent.Session().Update(obj);
            }
            catch (Exception ex)
            {
                iQExceptionHandler.TreatException(ex);
            }

            MarkOld();
        }
        public virtual void CopyValues(LineaInventarioRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid               = source.Oid;
            _oid_inventario   = source.OidInventario;
            _oid_lineaalmacen = source.OidLineaalmacen;
            _concepto         = source.Concepto;
            _cantidad         = source.Cantidad;
            _observaciones    = source.Observaciones;
        }
 protected override void DataPortal_Update()
 {
     if (IsDirty)
     {
         try
         {
             LineaInventarioRecord obj = Session().Get <LineaInventarioRecord>(Oid);
             obj.CopyValues(this._base.Record);
             Session().Update(obj);
             MarkOld();
         }
         catch (Exception ex)
         {
             iQExceptionHandler.TreatException(ex);
         }
     }
 }