/// <summary> /// Invoke the Removed event /// </summary> /// <param name="e">The event arguments</param> protected virtual void OnRemoved(InventoryNotificationEventArgs e) { if (Removed != null) { Removed(this, e); } }
/// <summary> /// Invoke the Expired event /// </summary> /// <param name="e">The event arguments</param> protected virtual void OnExpired(InventoryNotificationEventArgs e) { if (Expired != null) { Expired(this, e); } }