private DemoParticipantProvider RegisterParticipantListener(IParticipantListener participantListener)
 {
     if (!mParticipantListeners.Contains(participantListener))
     {
         mParticipantListeners.Add(participantListener);
     }
     return(this);
 }
 private DemoParticipantProvider UsnregisterParticipantListener(IParticipantListener participantListener)
 {
     mParticipantListeners.Remove(participantListener);
     return(this);
 }