示例#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);
                }

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

            MarkOld();
        }
示例#2
0
        public virtual void CopyValues(PrivilegeRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid       = source.Oid;
            _oid_user = source.OidUser;
            _oid_item = source.OidItem;
            _read     = source.Read;
            _create   = source.Create;
            _modify   = source.Modify;
            _delete   = source.Remove;
        }