MCPcopy Create free account
hub / github.com/Krishna18062005/Hospital_Management_System_Java / Appointment

Method Appointment

Appointment.java:9–14  ·  view source on GitHub ↗
(int id, int patientId, int doctorId, String date)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected