[R5] Patient JPA repository

This commit is contained in:
Mirna Gama 2024-01-06 18:05:10 -03:00 committed by Mirna Gama
parent 2bd13a015f
commit 1bced128e5

View File

@ -0,0 +1,15 @@
package com.mirna.hospitalmanagementapi.domain.repositories;
import org.springframework.data.jpa.repository.JpaRepository;
import com.mirna.hospitalmanagementapi.domain.entities.Patient;
/**
* Repository interface for retrieving and manipulating all Patient objects using their unique Long identifier.
*
* @author Mirna Gama
* @version 1.0
*/
public interface PatientRepository extends JpaRepository<Patient, Long>{
}