Beispiel #1
0
 public Patient(int doctor, int patientID, string firstName, string lastName, PatientSpecs specs)
     : base(firstName, lastName)
 {
     _specs     = specs;
     _doctorID  = doctor;
     _patientID = patientID;
 }
Beispiel #2
0
 public Patient(int doctor, string firstName, string lastName, PatientSpecs specs)
     : this(doctor, 0, firstName, lastName, specs)
 {
 }
Beispiel #3
0
 public Patient()
 {
     _specs = new PatientSpecs();
 }