示例#1
0
 /// <summary> setups the sync logic for member _scriptType</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncScriptType(IEntity2 relatedEntity)
 {
     if (_scriptType != relatedEntity)
     {
         DesetupSyncScriptType(true, true);
         _scriptType = (ScriptTypeEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_scriptType, new PropertyChangedEventHandler(OnScriptTypePropertyChanged), "ScriptType", ScriptsEntity.Relations.ScriptTypeEntityUsingScriptTypeId, true, new string[] {  });
     }
 }
示例#2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _callQueue = null;
            _organizationRoleUserCollectionViaCallQueue_ = null;
            _organizationRoleUserCollectionViaCallQueue  = null;
            _scriptType = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
示例#3
0
        protected ScriptsEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _callQueue = (EntityCollection <CallQueueEntity>)info.GetValue("_callQueue", typeof(EntityCollection <CallQueueEntity>));
                _organizationRoleUserCollectionViaCallQueue_ = (EntityCollection <OrganizationRoleUserEntity>)info.GetValue("_organizationRoleUserCollectionViaCallQueue_", typeof(EntityCollection <OrganizationRoleUserEntity>));
                _organizationRoleUserCollectionViaCallQueue  = (EntityCollection <OrganizationRoleUserEntity>)info.GetValue("_organizationRoleUserCollectionViaCallQueue", typeof(EntityCollection <OrganizationRoleUserEntity>));
                _scriptType = (ScriptTypeEntity)info.GetValue("_scriptType", typeof(ScriptTypeEntity));
                if (_scriptType != null)
                {
                    _scriptType.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
示例#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(ScriptTypeEntity.GetRelationsForField(fieldName));
 }
示例#5
0
 /// <summary> Removes the sync logic for member _scriptType</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 DesetupSyncScriptType(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_scriptType, new PropertyChangedEventHandler(OnScriptTypePropertyChanged), "ScriptType", ScriptsEntity.Relations.ScriptTypeEntityUsingScriptTypeId, true, signalRelatedEntity, "Scripts", resetFKFields, new int[] { (int)ScriptsFieldIndex.ScriptTypeId });
     _scriptType = null;
 }