Ejemplo n.º 1
0
 /// <summary>
 /// Verify if Event Notification exist in List.
 /// </summary>
 /// <param name="eventNotification">Event Notification.</param>
 /// <returns>True if exist.</returns>
 public bool Includes(EventNotificationDescriptionBase eventNotification)
 {
     return(List.Contains(eventNotification));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Add Event notification.
 /// </summary>
 /// <param name="eventNotification">Event Notification.</param>
 public void Add(EventNotificationDescriptionBase eventNotification)
 {
     List.Add(eventNotification);
 }