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

            _base.Record.OidUser = parent.Oid;

            try
            {
                ValidationRules.CheckRules();

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

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

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

            Oid         = source.Oid;
            _oid_user   = source.OidUser;
            _oid_schema = source.OidSchema;
        }