Example #1
0
 private void OnContactChanged(Contact contact, ContactChangeType changeType)
 {
     ContactChanged?.Invoke(this, new ContactChangedEventArgs(contact, changeType));
 }
Example #2
0
 public ContactChangedEventArgs(Contact contact, ContactChangeType type)
 {
     Contact    = contact;
     ChangeType = type;
 }