pamapi/src/main/java/com/pollex/pam/service/AppointmentService.java
@@ -46,7 +46,6 @@ appointmentRepository.save(appointment); } public List<Appointment> findByAgentNo(String agentNo) { return appointmentRepository.findByAgentNo(agentNo); } @@ -65,4 +64,8 @@ return appointmentCustomerViewMapper.toAppointmentCustomerViewDTO(appointment); } public List<Appointment> findByAgentNoAndCustomerId(String agentNo, Long customerId) { return appointmentRepository.findByAgentNoAndCustomerId(agentNo, customerId); } }