Beispiel #1
0
        /// <summary>
        /// Duplicates GreyFoxSetting object into a database; may or may not be the same database
        /// as the parent object.
        /// </summary>
        /// <returns> A new GreyFoxSetting object reflecting the replicated GreyFoxSetting object.</returns>
        public GreyFoxSetting Duplicate()
        {
            GreyFoxSetting clonedGreyFoxSetting = this.Clone();

            // Insert must be called after children are replicated!
            clonedGreyFoxSetting.iD       = GreyFoxSettingManager._insert(clonedGreyFoxSetting);
            clonedGreyFoxSetting.isSynced = true;
            return(clonedGreyFoxSetting);
        }
Beispiel #2
0
        /// <summary>
        /// Saves the GreyFoxSetting object state to the database.
        /// </summary>
        public int Save()
        {
            if (isSynced)
            {
                return(iD);
            }

            if (iD == -1)
            {
                throw (new Exception("Invalid record; cannot be saved."));
            }
            if (iD == 0)
            {
                iD = GreyFoxSettingManager._insert(this);
            }
            else
            {
                GreyFoxSettingManager._update(this);
            }
            isSynced = iD != -1;
            return(iD);
        }