Esempio n. 1
0
        /// <summary>
        /// Saves the GreyFoxRole object state to the database.
        /// </summary>
        public int Save()
        {
            lock (this)
            {
                if (isSynced)
                {
                    return(iD);
                }

                if (iD == -1)
                {
                    throw (new Exception("Invalid record; cannot be saved."));
                }
                if (iD == 0)
                {
                    iD = GreyFoxRoleManager._insert(this);
                }
                else
                {
                    GreyFoxRoleManager._update(this);
                }
                isSynced = iD != -1;
            }
            return(iD);
        }
Esempio n. 2
0
        /// <summary>
        /// Duplicates GreyFoxRole object into a database; may or may not be the same database
        /// as the parent object.
        /// </summary>
        /// <returns> A new GreyFoxRole object reflecting the replicated GreyFoxRole object.</returns>
        public GreyFoxRole Duplicate()
        {
            lock (this)
            {
                GreyFoxRole clonedGreyFoxRole = this.Clone();

                // Insert must be called after children are replicated!
                clonedGreyFoxRole.iD       = GreyFoxRoleManager._insert(clonedGreyFoxRole);
                clonedGreyFoxRole.isSynced = true;
                return(clonedGreyFoxRole);
            }
        }