File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/kotlin/application/service Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 99package application.service
1010
1111import entity.surgeryreport.SurgeryReportEntry
12- import entity.surgeryreport.SurgeryReportInfo
12+ import entity.surgeryreport.report.SurgeryReport
1313import io.vertx.core.Future
1414import usecase.repository.SurgeryReportRepository
1515
@@ -34,8 +34,8 @@ object SurgeryReportService {
3434 class SurgeryReportInfoService (
3535 private val processId : String ,
3636 private val repository : SurgeryReportRepository ,
37- ) : ApplicationService<Future<SurgeryReportInfo >> {
37+ ) : ApplicationService<Future<SurgeryReport >> {
3838
39- override fun execute (): Future <SurgeryReportInfo > = repository.getSurgeryReportInfo(processId)
39+ override fun execute (): Future <SurgeryReport > = repository.getSurgeryReportInfo(processId)
4040 }
4141}
You can’t perform that action at this time.
0 commit comments