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

            this.OidNaviera = parent.Oid;

            try
            {
                ValidationRules.CheckRules();

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

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

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

            Oid             = source.Oid;
            _puerto_destino = source.PuertoDestino;
            _puerto_origen  = source.PuertoOrigen;
            _precio         = source.Precio;
            _oid_naviera    = source.OidNaviera;
        }