Inheritance: System.EventArgs
Esempio n. 1
0
 protected virtual void OnEntityRemoved(EntityEventArgs e)
 {
     EntityRemoved?.Invoke(this, e);
     OnModified(EventArgs.Empty);
 }
Esempio n. 2
0
		protected virtual void OnEntityRemoved(EntityEventArgs e)
		{
			if (EntityRemoved != null)
				EntityRemoved(this, e);
			OnModified(EventArgs.Empty);
		}