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

            // Insert must be called after children are replicated!
            clonedDojoPromotionFlag.iD       = DojoPromotionFlagManager._insert(clonedDojoPromotionFlag);
            clonedDojoPromotionFlag.isSynced = true;
            return(clonedDojoPromotionFlag);
        }
예제 #2
0
        /// <summary>
        /// Ensures that the object's fields and children are
        /// pre-loaded before any updates or reads.
        /// </summary>
        public void EnsurePreLoad()
        {
            if (!isPlaceHolder)
            {
                return;
            }

            DojoPromotionFlagManager._fill(this);
            isPlaceHolder = false;
        }
예제 #3
0
        /// <summary>
        /// Saves the DojoPromotionFlag 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 = DojoPromotionFlagManager._insert(this);
            }
            else
            {
                DojoPromotionFlagManager._update(this);
            }
            isSynced = iD != -1;
            return(iD);
        }
예제 #4
0
 /// <summary>
 /// Overwrites and existing DojoPromotionFlag object in the database.
 /// </summary>
 public void Overwrite(int id)
 {
     iD = id;
     DojoPromotionFlagManager._update(this);
     isSynced = true;
 }
예제 #5
0
 public void Delete()
 {
     DojoPromotionFlagManager._delete(this.iD);
     this.iD  = 0;
     isSynced = false;
 }
예제 #6
0
 public DojoPromotionFlag(int id)
 {
     this.iD  = id;
     isSynced = DojoPromotionFlagManager._fill(this);
 }