Esempio n. 1
0
 /// <summary> setups the sync logic for member _note</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncNote(IEntity2 relatedEntity)
 {
     if (_note != relatedEntity)
     {
         DesetupSyncNote(true, true);
         _note = (NoteEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_note, new PropertyChangedEventHandler(OnNotePropertyChanged), "Note", ActivityEntity.Relations.NoteEntityUsingNoteId, false, new string[] {  });
     }
 }
Esempio n. 2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _orgRoleUserActivity = null;
            _organizationRoleUserCollectionViaOrgRoleUserActivity = null;

            _note = null;
            _task = null;
            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
Esempio n. 3
0
        protected ActivityEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _orgRoleUserActivity = (EntityCollection <OrgRoleUserActivityEntity>)info.GetValue("_orgRoleUserActivity", typeof(EntityCollection <OrgRoleUserActivityEntity>));
                _organizationRoleUserCollectionViaOrgRoleUserActivity = (EntityCollection <OrganizationRoleUserEntity>)info.GetValue("_organizationRoleUserCollectionViaOrgRoleUserActivity", typeof(EntityCollection <OrganizationRoleUserEntity>));

                _note = (NoteEntity)info.GetValue("_note", typeof(NoteEntity));
                if (_note != null)
                {
                    _note.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                _task = (TaskEntity)info.GetValue("_task", typeof(TaskEntity));
                if (_task != null)
                {
                    _task.AfterSave += new EventHandler(OnEntityAfterSave);
                }
                base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance());
            }

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
Esempio n. 4
0
 /// <summary> Removes the sync logic for member _note</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 DesetupSyncNote(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_note, new PropertyChangedEventHandler(OnNotePropertyChanged), "Note", ActivityEntity.Relations.NoteEntityUsingNoteId, false, signalRelatedEntity, "Activity", false, new int[] { (int)ActivityFieldIndex.ActivityId });
     _note = null;
 }
Esempio n. 5
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(NoteEntity.GetRelationsForField(fieldName));
 }