source: src/main/java/com/example/salonbella/repository/ProductRepository.java

Last change on this file was e9b70f6, checked in by makyjovanovsky <mjovanovski04@…>, 17 months ago

order

  • Property mode set to 100644
File size: 314 bytes
Line 
1package com.example.salonbella.repository;
2
3import com.example.salonbella.entity.ProductEntity;
4import org.springframework.data.jpa.repository.JpaRepository;
5
6import java.util.Optional;
7
8public interface ProductRepository extends JpaRepository<ProductEntity,Long> {
9 Optional<ProductEntity> findById(Long id);
10}
Note: See TracBrowser for help on using the repository browser.