/// <summary> /// Saves the DojoSeminar object state to the database. /// </summary> public int Save() { if (location != null) { location.Save(); } if (options != null) { foreach (DojoSeminarOption item in options) { item.Save(); } } if (isSynced) { return(iD); } if (iD == -1) { throw (new Exception("Invalid record; cannot be saved.")); } if (iD == 0) { iD = DojoSeminarManager._insert(this); } else { DojoSeminarManager._update(this); } isSynced = iD != -1; return(iD); }
/// <summary> /// Overwrites and existing DojoSeminar object in the database. /// </summary> public void Overwrite(int id) { iD = id; DojoSeminarManager._update(this); isSynced = true; }