コード例 #1
0
ファイル: DojoOrganization.cs プロジェクト: rahodges/Tessen
        /// <summary>
        /// Saves the DojoOrganization object state to the database.
        /// </summary>
        public int Save()
        {
            if (classLocations != null)
            {
                foreach (GreyFoxContact item in classLocations)
                {
                    item.Save();
                }
            }
            if (administrativeContact != null)
            {
                administrativeContact.Save();
            }

            if (isSynced)
            {
                return(iD);
            }

            if (iD == -1)
            {
                throw (new Exception("Invalid record; cannot be saved."));
            }
            if (iD == 0)
            {
                iD = DojoOrganizationManager._insert(this);
            }
            else
            {
                DojoOrganizationManager._update(this);
            }
            isSynced = iD != -1;
            return(iD);
        }
コード例 #2
0
ファイル: DojoOrganization.cs プロジェクト: rahodges/Tessen
        /// <summary>
        /// Duplicates DojoOrganization object into a database; may or may not be the same database
        /// as the parent object.
        /// </summary>
        /// <returns> A new DojoOrganization object reflecting the replicated DojoOrganization object.</returns>
        public DojoOrganization Duplicate()
        {
            DojoOrganization clonedDojoOrganization = this.Clone();

            // Insert must be called after children are replicated!
            clonedDojoOrganization.iD       = DojoOrganizationManager._insert(clonedDojoOrganization);
            clonedDojoOrganization.isSynced = true;
            return(clonedDojoOrganization);
        }
コード例 #3
0
ファイル: DojoOrganization.cs プロジェクト: rahodges/Tessen
        /// <summary>
        /// Ensures that the object's fields and children are
        /// pre-loaded before any updates or reads.
        /// </summary>
        public void EnsurePreLoad()
        {
            if (!isPlaceHolder)
            {
                return;
            }

            DojoOrganizationManager._fill(this);
            isPlaceHolder = false;
        }
コード例 #4
0
ファイル: DojoOrganization.cs プロジェクト: rahodges/Tessen
 /// <summary>
 /// Overwrites and existing DojoOrganization object in the database.
 /// </summary>
 public void Overwrite(int id)
 {
     iD = id;
     DojoOrganizationManager._update(this);
     isSynced = true;
 }
コード例 #5
0
ファイル: DojoOrganization.cs プロジェクト: rahodges/Tessen
 public void Delete()
 {
     DojoOrganizationManager._delete(this.iD);
     this.iD  = 0;
     isSynced = false;
 }
コード例 #6
0
ファイル: DojoOrganization.cs プロジェクト: rahodges/Tessen
 public DojoOrganization(int id)
 {
     this.iD  = id;
     isSynced = DojoOrganizationManager._fill(this);
 }