public void Remove( INotificationInterest listener ) { this.notifier.Remove( listener ); }
public void Remove( INotificationInterest listener ) { if ( this.listeners.Contains( listener ) ) { this.listeners.Remove( listener ); } }
public void Add( INotificationInterest listener ) { this.notifier.Add( listener ); }
public void Add( INotificationInterest listener ) { if ( this.listeners.Contains( listener ) ) { return; } this.listeners.Add( listener ); }