Beispiel #1
0
 /// <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);
     }
 }
Beispiel #2
0
 /// <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);
     }
 }