Exemplo n.º 1
0
 public void Handle(ParticipantDelegateStatusGranted e)
 {
     if (Participants.ContainsKey(e.Id))
     {
         Participants[e.Id].IsDelegate = true;
     }
 }
 public void Apply(ParticipantDelegateStatusGranted e)
 {
     IsDelegate = true;
 }
Exemplo n.º 3
0
        public void Handle(ParticipantDelegateStatusGranted e)
        {
            var participant = Participants.Single(x => x.Id == e.Id);

            participant.IsDelegate = true;
        }