public void AddTherapists(List <TherapistUser> therapists) => therapists.ForEach(t => Therapists.Add(t));
public void AddTherapist(Therapist therapist) => Therapists.Add(new TherapistUser() { Therapist = therapist, TherapistId = therapist.TherapistId, User = this, UserId = this.UserId });