Rev 26 | Rev 34 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 26 | moos | 1 | package ch.ffhs.webE.dao; |
| 2 | |||
| 3 | import java.util.List; |
||
| 4 | |||
| 5 | import ch.ffhs.webE.domain.RelationshipType; |
||
| 6 | |||
| 7 | public interface RelationshipTypeDAO { |
||
| 8 | |||
| 9 | List<RelationshipType> listRelationshipTypes(); |
||
| 10 | |||
| 11 | boolean deleteRelationshipType(int relTypeID); |
||
| 27 | moos | 12 | |
| 13 | RelationshipType listRelTypeById(int relTypeID); |
||
| 26 | moos | 14 | |
| 27 | moos | 15 | boolean saveOrUpdateRelType(RelationshipType relType); |
| 26 | moos | 16 | } |