示例#1
0
 /// <summary> setups the sync logic for member _incidentalFindings</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncIncidentalFindings(IEntity2 relatedEntity)
 {
     if (_incidentalFindings != relatedEntity)
     {
         DesetupSyncIncidentalFindings(true, true);
         _incidentalFindings = (IncidentalFindingsEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_incidentalFindings, new PropertyChangedEventHandler(OnIncidentalFindingsPropertyChanged), "IncidentalFindings", IflocationMasterEntity.Relations.IncidentalFindingsEntityUsingIncidentalFindingsId, true, new string[] {  });
     }
 }
示例#2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _incidentalFindings = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
示例#3
0
        protected IflocationMasterEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _incidentalFindings = (IncidentalFindingsEntity)info.GetValue("_incidentalFindings", typeof(IncidentalFindingsEntity));
                if (_incidentalFindings != null)
                {
                    _incidentalFindings.AfterSave += new EventHandler(OnEntityAfterSave);
                }

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

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
示例#4
0
 /// <summary> Removes the sync logic for member _incidentalFindings</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 DesetupSyncIncidentalFindings(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_incidentalFindings, new PropertyChangedEventHandler(OnIncidentalFindingsPropertyChanged), "IncidentalFindings", IflocationMasterEntity.Relations.IncidentalFindingsEntityUsingIncidentalFindingsId, true, signalRelatedEntity, "IflocationMaster", resetFKFields, new int[] { (int)IflocationMasterFieldIndex.IncidentalFindingsId });
     _incidentalFindings = null;
 }