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>
 /// Overwrites and existing GreyFoxRole object in the database.
 /// </summary>
 public void Overwrite(int id)
 {
     iD = id;
     GreyFoxRoleManager._update(this);
     isSynced = true;
 }