/// <summary> /// Duplicates DojoSeminarOption object into a database; may or may not be the same database /// as the parent object. /// </summary> /// <returns> A new DojoSeminarOption object reflecting the replicated DojoSeminarOption object.</returns> public DojoSeminarOption Duplicate() { DojoSeminarOption clonedDojoSeminarOption = this.Clone(); // Insert must be called after children are replicated! clonedDojoSeminarOption.iD = DojoSeminarOptionManager._insert(clonedDojoSeminarOption); clonedDojoSeminarOption.isSynced = true; return(clonedDojoSeminarOption); }
/// <summary> /// Saves the DojoSeminarOption 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 = DojoSeminarOptionManager._insert(this); } else { DojoSeminarOptionManager._update(this); } isSynced = iD != -1; return(iD); }