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 | |
---|
1 | package com.example.medweb.repository;
|
---|
2 |
|
---|
3 | import com.example.medweb.model.Termin;
|
---|
4 | import org.springframework.stereotype.Repository;
|
---|
5 |
|
---|
6 | import java.util.List;
|
---|
7 |
|
---|
8 | @Repository
|
---|
9 | public 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.