| 1 | package com.tecmilenio.mapsconect.repository; |
| 2 | |
| 3 | import com.tecmilenio.mapsconect.entity.ResenaEmpresarial; |
| 4 | import org.springframework.data.jpa.repository.JpaRepository; |
| 5 | import org.springframework.stereotype.Repository; |
| 6 | |
| 7 | import java.util.List; |
| 8 | |
| 9 | @Repository |
| 10 | public interface ResenaEmpresarialRepository extends JpaRepository<ResenaEmpresarial, Integer> { |
| 11 | |
| 12 | List<ResenaEmpresarial> findByEmpresa_Id(Integer idEmpresa); |
| 13 | |
| 14 | } |