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

            SessionCode = parent.SessionCode;

            try
            {
                ValidationRules.CheckRules();

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

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

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

            Oid    = source.Oid;
            _valor = source.Valor;
        }