(int id, String name, String specialization)
| 6 | private String specialization; |
| 7 | |
| 8 | public Doctor(int id, String name, String specialization) { |
| 9 | this.id = id; |
| 10 | this.name = name; |
| 11 | this.specialization = specialization; |
| 12 | } |
| 13 | |
| 14 | public int getId() { |
| 15 | return id; |
nothing calls this directly
no outgoing calls
no test coverage detected