public virtual void OnAddedNew(T item) { if (_addedNewHandlers != null) { var args = new AddedNewEventArgs<T>(item); _addedNewHandlers(this, args); } }
public virtual void OnAddedNew(T item) { var args = new AddedNewEventArgs <T>(item); if (AddedNew != null) { AddedNew(this, args); } }