package ch.ffhs.webE.dao; import java.util.List; import ch.ffhs.webE.domain.RelationshipType; public interface RelationshipTypeDAO { List listRelationshipTypes(); boolean deleteRelationshipType(int relTypeID); RelationshipType listRelTypeById(int relTypeID); boolean saveOrUpdateRelType(RelationshipType relType); }