Example #1
0
 public ContainerItemEventArgs(int containerId, IEnumerable <object> itemsList, ContainerItemEventType action) : this(action)
 {
     NewItems    = itemsList;
     ContainerID = containerId;
 }
Example #2
0
 public ContainerItemEventArgs(int containerId, IEnumerable <object> newItems, IEnumerable <object> oldItems, ContainerItemEventType action) : this(containerId, newItems, action)
 {
     OldItems = oldItems;
 }
Example #3
0
 public ContainerItemEventArgs(ContainerItemEventType action)
 {
     Action = action;
 }