public SBMObject(AppObject Par, Item Item)
     : base(Par)
 {
     this.Item = Item;
 }
 public SBMObjectList(AppObject Par, ItemList ItemLst)
     : base(Par)
 {
     Init(ItemLst);
 }
 public AppObjectList(Application App)
 {
     //--- Set the application and clear the parent
     Application = App;
     Parent      = null;
 }
 public AppObject(AppObject Par)
 {
     //--- Set the application and the parent
     Application = Par.Application;
     Parent      = Par;
 }
 public SAPObject(AppObject Par, AuxiliaryItem Item)
     : base(Par, Item)
 {
 }