public SelectedContainerChangedEventArgs(BaseContainer container, bool selected)
     : this()
 {
     this.container = container;
       this.selected = selected;
 }
 public bool Filter(BaseContainer container)
 {
     return true;
 }
 public BaseContainerTransport(BaseContainer container)
     : this()
 {
     this.container = container;
 }