Exemple #1
0
 /// <summary> setups the sync logic for member _assetCategory</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncAssetCategory(IEntity2 relatedEntity)
 {
     if (_assetCategory != relatedEntity)
     {
         DesetupSyncAssetCategory(true, true);
         _assetCategory = (AssetCategoryEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_assetCategory, new PropertyChangedEventHandler(OnAssetCategoryPropertyChanged), "AssetCategory", AssetTypeEntity.Relations.AssetCategoryEntityUsingAssetCategoryId, true, new string[] {  });
     }
 }
Exemple #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _serviceLocationAssetTypeId = null;
            _serviceLocationCollectionViaServiceLocationAssetTypeId = null;
            _assetCategory = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END

            OnInitClassMembersComplete();
        }
Exemple #3
0
        protected AssetTypeEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _serviceLocationAssetTypeId = (EntityCollection <ServiceLocationAssetTypeEntity>)info.GetValue("_serviceLocationAssetTypeId", typeof(EntityCollection <ServiceLocationAssetTypeEntity>));
                _serviceLocationCollectionViaServiceLocationAssetTypeId = (EntityCollection <ServiceLocationEntity>)info.GetValue("_serviceLocationCollectionViaServiceLocationAssetTypeId", typeof(EntityCollection <ServiceLocationEntity>));
                _assetCategory = (AssetCategoryEntity)info.GetValue("_assetCategory", typeof(AssetCategoryEntity));
                if (_assetCategory != null)
                {
                    _assetCategory.AfterSave += new EventHandler(OnEntityAfterSave);
                }

                base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance());
            }

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Exemple #4
0
 /// <summary>Gets the relation objects which represent the relation the fieldName specified is mapped on. </summary>
 /// <param name="fieldName">Name of the field mapped onto the relation of which the relation objects have to be obtained.</param>
 /// <returns>RelationCollection with relation object(s) which represent the relation the field is maped on</returns>
 public override RelationCollection GetRelationsForFieldOfType(string fieldName)
 {
     return(AssetCategoryEntity.GetRelationsForField(fieldName));
 }
Exemple #5
0
 /// <summary> Removes the sync logic for member _assetCategory</summary>
 /// <param name="signalRelatedEntity">If set to true, it will call the related entity's UnsetRelatedEntity method</param>
 /// <param name="resetFKFields">if set to true it will also reset the FK fields pointing to the related entity</param>
 private void DesetupSyncAssetCategory(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_assetCategory, new PropertyChangedEventHandler(OnAssetCategoryPropertyChanged), "AssetCategory", AssetTypeEntity.Relations.AssetCategoryEntityUsingAssetCategoryId, true, signalRelatedEntity, "AssetType", resetFKFields, new int[] { (int)AssetTypeFieldIndex.AssetCategoryId });
     _assetCategory = null;
 }