Untitled

Anonymous
plain_text
09/29/2022 10:12 AM
236 B
13
Indexable
@Service
public class BookService {

    @Autowired
    private BookRepository bookRepository;

    public List<Book> getAll() {
        return bookRepository.findAll();
    }
}
Editor is loading...