Example #1
0
 public ReGameSession(DateTime date, TherapistModel therapist, PatientModel patient)
 {
     this.Date        = date;
     this.Therapist   = therapist;
     this.Patient     = patient;
     this.GameResults = new List <GameResult>();
 }
Example #2
0
 public bool Equals(TherapistModel other)
 {
     return(this.Name.Equals(other.Name));
 }