Ignore:
Timestamp:
01/09/21 03:04:38 (4 years ago)
Author:
Vzdra <vladko.zdravkovski@…>
Branches:
master
Children:
a3d2b0d
Parents:
297bd16
Message:

added full text search on work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/it/finki/tinki/service/WorkService.java

    r297bd16 rf067338  
    44import it.finki.tinki.model.Work.Job;
    55import it.finki.tinki.model.Work.Project;
     6import it.finki.tinki.model.dto.response.work.InternshipResponseDTO;
     7import it.finki.tinki.model.dto.response.work.JobResponseDTO;
     8import it.finki.tinki.model.dto.response.work.ProjectResponseDTO;
     9import it.finki.tinki.model.dto.response.work.WorkResponseDTO;
    610import it.finki.tinki.model.enumerator.AccountType;
    711
     
    1923    Internship insertInternship(String title, String description, Long adccId, int salary, List<Long> skillsTrained, int openSpots, AccountType type);
    2024    Project insertProject(String title, String description, Long adccId, int salary, List<Long> skillsRequired, Date validUntil, AccountType type);
     25    List<JobResponseDTO> fullTextJobSearch(String text);
     26    List<InternshipResponseDTO> fullTextInternshipSearch(String text);
     27    List<ProjectResponseDTO> fullTextProjectSearch(String text);
    2128}
Note: See TracChangeset for help on using the changeset viewer.