[R5] Patient JPA repository
This commit is contained in:
parent
2bd13a015f
commit
1bced128e5
@ -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>{
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user