source: src/main/java/com/example/cookbook/service/impl/SostojkiServiceImpl.java@ 501396e

Last change on this file since 501396e was 501396e, checked in by Blazho <aleksandar.blazhevski@…>, 5 months ago

added missing files

  • Property mode set to 100644
File size: 714 bytes
Line 
1package com.example.cookbook.service.impl;
2
3
4import com.example.cookbook.model.Sostojka;
5import com.example.cookbook.repository.SostojkiRespository;
6import com.example.cookbook.service.SostojkiService;
7import org.springframework.stereotype.Service;
8
9import java.sql.SQLException;
10import java.util.List;
11
12@Service
13public 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.