internal void CopyValues(IDataReader source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source);

            _copyable = Format.DataReader.GetBool(source, "COPYABLE");
        }
        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();
        }
 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));
         }
     }
 }