package no.niths.infrastructure.school.interfaces; import no.niths.domain.school.Committee; import no.niths.infrastructure.interfaces.GenericRepository; /** * Repository class for Committee * * <p> * Inherits the basic CRUD actions * </p> */ public interface CommitteeRepositorty extends GenericRepository<Committee>{ }