[R6] Find patients use case class

This commit is contained in:
Mirna Gama 2024-01-06 19:15:52 -03:00 committed by Mirna Gama
parent 07ad8c10f0
commit f166bb930c

View File

@ -0,0 +1,34 @@
package com.mirna.hospitalmanagementapi.application.usecase.patient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Component;
import com.mirna.hospitalmanagementapi.domain.entities.Patient;
import com.mirna.hospitalmanagementapi.domain.repositories.PatientRepository;
/**
* This class is used to execute the findPatientsByActiveTrue method from patient repository
*
* @author Mirna Gama
* @version 1.0
*/
@Component
public class FindPatientsUseCase {
@Autowired
private PatientRepository patientRepository;
/**
* Executes the findDoctorsByActiveTrue method from Patient repository
*
* @param pageable Pagination information, such as size and page number
*
* @return A paginated list with active stored patients if successful, or null if there is an error
*
*/
public Page<Patient> execute(Pageable pageable) {
return this.patientRepository.findPatientsByActiveTrue(pageable);
}
}