Skip to content
Snippets Groups Projects
Select Git revision
  • e8903f07d5ebeaf6ffdb5a6b7f5f4f3efca32609
  • main default protected
  • demo
  • tolsztoj
4 results

DocumentRepository.java

Blame
  • DocumentRepository.java 283 B
    package hu.pazmany;
    
    import org.springframework.data.jpa.repository.JpaRepository;
    import java.util.List;
    
    public interface DocumentRepository extends JpaRepository<Document, Long>{
        List<Document> findAllByUser(User user);
        List<Document> findAllBySubject(Subject subject);
    }