Example #1
0
 public void Handle(ParticipantDelegateStatusRevoked e)
 {
     if (Participants.ContainsKey(e.Id))
     {
         Participants[e.Id].IsDelegate = false;
     }
 }
 public void Apply(ParticipantDelegateStatusRevoked e)
 {
     IsDelegate = false;
 }
Example #3
0
        public void Handle(ParticipantDelegateStatusRevoked e)
        {
            var participant = Participants.Single(x => x.Id == e.Id);

            participant.IsDelegate = false;
        }