/// <summary> /// Saves the DojoAccessControlGroup 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 = DojoAccessControlGroupManager._insert(this); } else { DojoAccessControlGroupManager._update(this); } isSynced = iD != -1; return(iD); }
/// <summary> /// Overwrites and existing DojoAccessControlGroup object in the database. /// </summary> public void Overwrite(int id) { iD = id; DojoAccessControlGroupManager._update(this); isSynced = true; }