Esempio n. 1
0
 public Appointment(DateTime _date, DateTime _hour, Patient _patient, Psychologist _psychologist)
 {
     this.date         = _date;
     this.hour         = _hour;
     this.patient      = _patient;
     this.psychologist = _psychologist;
 }
Esempio n. 2
0
 public Diagnostic(DateTime _date, String _answer, String _networkAnswer, Patient _patient, Psychologist _psychologist)
 {
     this.diagnosisDate = _date;
     this.answer        = _answer;
     this.networkAnswer = _networkAnswer;
     this.patient       = _patient;
     this.psychologist  = _psychologist;
 }
Esempio n. 3
0
 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;
 }
Esempio n. 4
0
 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;
 }
Esempio n. 5
0
 public Diagnostic(int _ID, String _diagnosisDateString, String _feelings, String _emotions, String _answer, String _networkAnswer, double _totalAnxiety, Patient _patient, Psychologist _psychologist)
 {
     this.ID = _ID;
     this.diagnosisDateString = _diagnosisDateString;
     this.feelings            = _feelings;
     this.emotions            = _emotions;
     this.answer        = _answer;
     this.networkAnswer = _networkAnswer;
     this.totalAnxiety  = _totalAnxiety;
     this.patient       = _patient;
     this.psychologist  = _psychologist;
 }
Esempio n. 6
0
 public Appointment(Psychologist _psychologist)
 {
     this.psychologist = _psychologist;
 }
Esempio n. 7
0
 public Diagnostic(Patient _patient, Psychologist _psycho)
 {
     this.patient      = _patient;
     this.psychologist = _psycho;
 }
Esempio n. 8
0
 public Diagnostic(Psychologist _psycho)
 {
     this.psychologist = _psycho;
 }