public BinderComponent(IContainer iContainer) : base(iContainer)
 {
     _iBindContainer = new BindContainer();
 }
 public Binding(IBindContainer iBindContainer)
 {
     Types = new List <Type>();
     iBindContainer.AddBinding(this);
 }