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