public void OnPostRemoveCollection(PostCollectionRemoveEvent @event)
 {
     ProcessCollectionEvent(@event);
 }
Exemple #2
0
 public void OnPostRemoveCollection(PostCollectionRemoveEvent @event)
 {
     Debug.WriteLine("EventListener.OnPostRemoveCollection: {0} {1}", @event.AffectedOwnerIdOrNull, @event.Collection.Role);
 }
		private void PostRemove()
		{
			IPostCollectionRemoveEventListener[] postListeners = Session.Listeners.PostCollectionRemoveEventListeners;
			if (postListeners.Length > 0)
			{
				PostCollectionRemoveEvent postEvent = new PostCollectionRemoveEvent(Persister, Collection, (IEventSource) Session,
				                                                                    affectedOwner);
				for (int i = 0; i < postListeners.Length; i++)
				{
					postListeners[i].OnPostRemoveCollection(postEvent);
				}
			}
		}
			public void OnPostRemoveCollection(PostCollectionRemoveEvent @event)
			{
				AddEvent(@event, this);
			}
 public void OnPostRemoveCollection(PostCollectionRemoveEvent @event)
 {
     log.Debug("OnPostRemoveCollection :" + @event);
 }