Exemplo n.º 1
0
 public TherapyPatient(string name, string lastName, Gender gender, DateTime birthDate)
 {
     Info = new TherapyPatientInfo {
         Name = name, LastName = lastName, Gender = gender, BirthDate = birthDate
     };
     _sessions   = new List <TherapySession>();
     NextSession = DateTime.Now;
 }
Exemplo n.º 2
0
        public TherapySession(TherapyPatientInfo clientInfo)
        {
            TherapyClientInfo = clientInfo;
            StartDateTime     = DateTime.Now;
            SessionRunning    = true;

            _notesList   = new List <Note>();
            _emotionData = new List <EmotionData>();
        }