Last change
on this file was 501396e, checked in by Blazho <aleksandar.blazhevski@…>, 9 months ago |
added missing files
|
-
Property mode
set to
100644
|
File size:
714 bytes
|
Line | |
---|
1 | package com.example.cookbook.service.impl;
|
---|
2 |
|
---|
3 |
|
---|
4 | import com.example.cookbook.model.Sostojka;
|
---|
5 | import com.example.cookbook.repository.SostojkiRespository;
|
---|
6 | import com.example.cookbook.service.SostojkiService;
|
---|
7 | import org.springframework.stereotype.Service;
|
---|
8 |
|
---|
9 | import java.sql.SQLException;
|
---|
10 | import java.util.List;
|
---|
11 |
|
---|
12 | @Service
|
---|
13 | public class SostojkiServiceImpl implements SostojkiService {
|
---|
14 |
|
---|
15 | private final SostojkiRespository sostojkiRepository;
|
---|
16 |
|
---|
17 | public SostojkiServiceImpl(SostojkiRespository sostojkiRepository) {
|
---|
18 | this.sostojkiRepository = sostojkiRepository;
|
---|
19 | }
|
---|
20 |
|
---|
21 | @Override
|
---|
22 | public List<Sostojka> findAllById(Long rId) throws SQLException {
|
---|
23 | return sostojkiRepository.findAllByRId(rId);
|
---|
24 | }
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.