public Appointment(DateTime _date, DateTime _hour, String _reason, Patient _patient, Psychologist _psychologist, MentalExam _mentalExam) { this.date = _date; this.hour = _hour; this.reason = _reason; this.patient = _patient; this.psychologist = _psychologist; this.mentalExam = _mentalExam; }
public Appointment(int _ID, String _dateString, String _hourString, String _reason, Patient _patient, Psychologist _psychologist, MentalExam _mentalExam) { this.ID = _ID; this.dateString = _dateString; this.hourString = _hourString; this.reason = _reason; this.patient = _patient; this.psychologist = _psychologist; this.mentalExam = _mentalExam; }