Exemplo n.º 1
0
        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;
                PrecioOrigenRecord obj = Session().Get <PrecioOrigenRecord>(Oid);
                obj.CopyValues(this._base.Record);
                Session().Update(obj);
            }
            catch (Exception ex)
            {
                iQExceptionHandler.TreatException(ex);
            }

            MarkOld();
        }
Exemplo n.º 2
0
        public virtual void CopyValues(PrecioOrigenRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid = source.Oid;
            _oid_transportista = source.OidTransportista;
            _oid_proveedor     = source.OidProveedor;
            _proveedor         = source.Proveedor;
            _puerto            = source.Puerto;
            _precio            = source.Precio;
        }