[R1] Doctor JPA Repository
This commit is contained in:
parent
d8f79e6492
commit
726550ae06
@ -0,0 +1,15 @@
|
||||
package com.mirna.hospitalmanagementapi.domain.repositories;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
import com.mirna.hospitalmanagementapi.domain.entities.Doctor;
|
||||
|
||||
/**
|
||||
* Repository interface for retrieving and manipulating all Doctor objects using their unique Long identifier.
|
||||
*
|
||||
* @author Mirna Gama
|
||||
* @version 1.0
|
||||
*/
|
||||
public interface DoctorRepository extends JpaRepository<Doctor, Long> {
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user