예제 #1
0
 public void Apply(ContactChanged e)
 {
 }
예제 #2
0
 private void OnContactChanged(Contact contact, ContactChangeType changeType)
 {
     ContactChanged?.Invoke(this, new ContactChangedEventArgs(contact, changeType));
 }
예제 #3
0
 public void Handle(ContactChanged e)
 {
     Update(e.Id, c => c.Address = e.Address);
 }