source: src/main/java/com/example/medweb/repository/TerminRepositoryCustom.java

Last change on this file was e5fefbd, checked in by Anita Terziska <63020646+Nit4e@…>, 2 years ago

initial commit

  • Property mode set to 100644
File size: 362 bytes
Line 
1package com.example.medweb.repository;
2
3import com.example.medweb.model.Termin;
4import org.springframework.stereotype.Repository;
5
6import java.util.List;
7
8@Repository
9public interface TerminRepositoryCustom {
10
11 List<Termin> findAllByTerminId (Integer termin_id);
12 Termin findByTerminId (Integer termin_id);
13 void deleteByTerminId (Integer termin_id);
14}
Note: See TracBrowser for help on using the repository browser.