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

            try
            {
                ValidationRules.CheckRules();

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

                SessionCode = parent.SessionCode;
                UserSettingRecord obj = Session().Get <UserSettingRecord>(Oid);
                obj.CopyValues(this._base.Record);

                Session().Update(obj);
            }
            catch (Exception ex)
            {
                throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex));
            }

            MarkOld();
        }
コード例 #2
0
        public virtual void CopyValues(UserSettingRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid          = source.Oid;
            _oid_user    = source.OidUser;
            _name        = source.Name;
            _value       = source.Value;
            _oid_setting = source.OidSetting;
        }
コード例 #3
0
 protected override void DataPortal_Update()
 {
     if (IsDirty)
     {
         try
         {
             UserSettingRecord obj = Session().Get <UserSettingRecord>(Oid);
             obj.CopyValues(this._base.Record);
             Session().Update(obj);
         }
         catch (Exception ex)
         {
             throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex));
         }
     }
 }