public override bool Initialize(object component, TreeGridDesignerColumnDescriptor[] columns)
        {
            if (!base.Initialize(component, columns))
            {
                return false;
            }

            var mappingAssociationSetEnd = component as MappingAssociationSetEnd;
            if (mappingAssociationSetEnd != null)
            {
                _mappingAssociationSetEnd = mappingAssociationSetEnd;
            }

            return true;
        }
 internal AssociationSetEndMappingBuilderForViewModel(
     AssociationSetEnd setEnd, StorageEntityType storeEntityType, MappingAssociationSetEnd mase)
     : base(setEnd, storeEntityType)
 {
     _mase = mase;
 }
 internal AssociationSetEndMappingBuilderForViewModel(
     AssociationSetEnd setEnd, StorageEntityType storeEntityType, MappingAssociationSetEnd mase)
     : base(setEnd, storeEntityType)
 {
     _mase = mase;
 }
 internal EndScalarPropertyBranch(MappingAssociationSetEnd mappingAssociationSetEnd, TreeGridDesignerColumnDescriptor[] columns)
     : base(mappingAssociationSetEnd, columns)
 {
     _mappingAssociationSetEnd = mappingAssociationSetEnd;
 }