	/**
	 * delete YYYY
	 *@param  key Key
	 *@param  parent ${top_bo_name}
	*/
	public void delete${child_bo_name}(${top_bo_name} parent, String key) throws BOException {
	    try {
		Row row = ((RowBO)parent).getRow();
		SyncBo syncBo = row.getSyncBo();
		syncBo.deleteRow(key);
	    } catch (Exception e) {
		throw new BOException("Failed inserting ${child_bo_name}: " + e.toString());
	    }
	}