[R9] Save consultation use case class

This commit is contained in:
Mirna Gama 2024-01-13 17:28:42 -03:00 committed by Mirna Gama
parent 22ba9ab9ec
commit 7ba358eb58

View File

@ -0,0 +1,31 @@
package com.mirna.hospitalmanagementapi.application.usecase.consultation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.mirna.hospitalmanagementapi.domain.entities.Consultation;
import com.mirna.hospitalmanagementapi.domain.repositories.ConsultationRepository;
/**
* This class is used to execute the save method from consultation repository
*
* @author Mirna Gama
* @version 1.0
*/
@Component
public class SaveConsultationUseCase {
@Autowired
private ConsultationRepository consultationRepository;
/**
* Executes the save method from Doctor repository
*
* @param consultation The Consultation to be saved in the repository
* @return The saved consultation if successful, or null if there is an error
*
*/
public Consultation execute(Consultation consultation) {
return this.consultationRepository.save(consultation);
}
}