feat: continued implementing adminApiService

This commit is contained in:
Théo Le Lez
2025-03-12 12:16:01 +01:00
parent ef964c4d35
commit 8d486dce89
8 changed files with 158 additions and 18 deletions

View File

@ -115,4 +115,8 @@ public class Appointment {
public Report getAppointmentReport() {
return report;
}
public void setAppointmentReport(Report report) {
this.report = report;
}
}

View File

@ -37,4 +37,12 @@ public class Report {
public void setReportContent(String reportContent) {
this.reportContent = reportContent;
}
public Appointment getAppointmentReport() {
return appointmentReport;
}
public void setAppointmentReport(Appointment appointmentReport) {
this.appointmentReport = appointmentReport;
}
}