예제 #1
0
        internal void Update(ApplicationSettings 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;
                ApplicationSettingRecord obj = Session().Get <ApplicationSettingRecord>(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(ApplicationSettingRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid    = source.Oid;
            _name  = source.Name;
            _value = source.Value;
        }
예제 #3
0
 protected override void DataPortal_Update()
 {
     if (IsDirty)
     {
         try
         {
             ApplicationSettingRecord obj = Session().Get <ApplicationSettingRecord>(Oid);
             obj.CopyValues(this._base.Record);
             Session().Update(obj);
         }
         catch (Exception ex)
         {
             throw new iQPersistentException(iQExceptionHandler.GetAllMessages(ex));
         }
     }
 }