- Timestamp:
- 02/03/24 15:58:58 (9 months ago)
- Branches:
- master
- Children:
- aea04dd
- Parents:
- 3e572eb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/cookbook/service/impl/SostojkiServiceImpl.java
r3e572eb r501396e 1 package com.example.cookbook.service.impl;public class SostojkiServiceImpl { 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 } 2 25 }
Note:
See TracChangeset
for help on using the changeset viewer.