Uses of Class
com.mirna.hospitalmanagementapi.domain.entities.Consultation
Packages that use Consultation
Package
Description
-
Uses of Consultation in com.mirna.hospitalmanagementapi.application.services
Methods in com.mirna.hospitalmanagementapi.application.services that return ConsultationModifier and TypeMethodDescriptionConsultationServiceImpl.addConsultation(ConsultationDTO consultationDTO) Adds a new consultation to the repository. -
Uses of Consultation in com.mirna.hospitalmanagementapi.application.usecase.consultation
Methods in com.mirna.hospitalmanagementapi.application.usecase.consultation that return ConsultationModifier and TypeMethodDescriptionFindConsultationByDoctorAndDateUseCase.execute(Long doctorId, LocalDateTime consultationDate) Executes the findConsultationByDoctorAndDate method from Doctor repositoryFindConsultationByPatientAndDateUseCase.execute(Long patientId, LocalDateTime consultationDate) Executes the findConsultationByPatientAndDate method from Doctor repositorySaveConsultationUseCase.execute(Consultation consultation) Executes the save method from Doctor repositoryMethods in com.mirna.hospitalmanagementapi.application.usecase.consultation with parameters of type ConsultationModifier and TypeMethodDescriptionSaveConsultationUseCase.execute(Consultation consultation) Executes the save method from Doctor repository -
Uses of Consultation in com.mirna.hospitalmanagementapi.domain.repositories
Methods in com.mirna.hospitalmanagementapi.domain.repositories that return ConsultationModifier and TypeMethodDescriptionConsultationRepository.findConsultationByDoctorAndDate(Long doctorId, LocalDateTime consultationDate) ConsultationRepository.findConsultationByPatientAndDate(Long patientId, LocalDateTime consultationDate) -
Uses of Consultation in com.mirna.hospitalmanagementapi.domain.services
Methods in com.mirna.hospitalmanagementapi.domain.services that return ConsultationModifier and TypeMethodDescriptionConsultationService.addConsultation(ConsultationDTO consultationDTO) Adds a new consultation to the repository.