(int id, int patientId, int doctorId, String date)
| 7 | private String date; |
| 8 | |
| 9 | public Appointment(int id, int patientId, int doctorId, String date) { |
| 10 | this.id = id; |
| 11 | this.patientId = patientId; |
| 12 | this.doctorId = doctorId; |
| 13 | this.date = date; |
| 14 | } |
| 15 | |
| 16 | public int getId() { |
| 17 | return id; |
nothing calls this directly
no outgoing calls
no test coverage detected