internal void Update(Transporter parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            this.OidTransportista = parent.Oid;

            try
            {
                ValidationRules.CheckRules();

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

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

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

            Oid = source.Oid;
            _oid_transportista = source.OidTransportista;
            _oid_cliente       = source.OidCliente;
            _numero_cliente    = source.NumeroCliente;
            _codigo_cliente    = source.CodigoCliente;
            _nombre_cliente    = source.NombreCliente;
            _puerto            = source.Puerto;
            _precio            = source.Precio;
        }