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

            participant.IsManager = false;
        }