示例#1
0
 public Data(ContactInformation contactInformation, string patientDoctor, Appointment appointment, Insurance insure, Symptom symptom)
 {
     this.contactInformation = contactInformation;
     this.doctor = patientDoctor;
     this.appointment = appointment;
     this.insurance = insure;
     this.symptom = symptom;
 }
 public Patient(ContactInformation contactInformation, Symptom symptom, Insurance insurance, Doctor preferredDoctor, DateTime preferredDate, TimeSpan preferredTime)
     : base(contactInformation)
 {
     this.symptom = symptom;
     this.insurance = insurance;
     this.preferredDoctor = preferredDoctor;
     this.preferredDate = preferredDate;
     this.preferredTime = preferredTime;
 }