- Timestamp:
- 01/09/21 03:04:38 (4 years ago)
- Branches:
- master
- Children:
- a3d2b0d
- Parents:
- 297bd16
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/it/finki/tinki/repository/ProjectRepository.java
r297bd16 rf067338 1 1 package it.finki.tinki.repository; 2 2 3 import it.finki.tinki.model.Skill; 4 import it.finki.tinki.model.Work.Job; 3 5 import it.finki.tinki.model.Work.Project; 4 6 import org.springframework.data.jpa.repository.JpaRepository; … … 10 12 public interface ProjectRepository extends JpaRepository<Project, Long> { 11 13 List<Project> findAllByAccount_Id(Long accountId); 14 List<Project> findAllByTitleContainsOrDescriptionContains(String title, String description); 15 List<Project> findAllBySkillsRequiredContaining(Skill skill); 12 16 }
Note:
See TracChangeset
for help on using the changeset viewer.