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

            // Insert must be called after children are replicated!
            clonedYariMediaType.iD       = YariMediaTypeManager._insert(clonedYariMediaType);
            clonedYariMediaType.isSynced = true;
            return(clonedYariMediaType);
        }
示例#2
0
        /// <summary>
        /// Saves the YariMediaType 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 = YariMediaTypeManager._insert(this);
            }
            else
            {
                YariMediaTypeManager._update(this);
            }
            isSynced = iD != -1;
            return(iD);
        }