예제 #1
0
 /// <summary> setups the sync logic for member _medicationUpload</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncMedicationUpload(IEntity2 relatedEntity)
 {
     if (_medicationUpload != relatedEntity)
     {
         DesetupSyncMedicationUpload(true, true);
         _medicationUpload = (MedicationUploadEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_medicationUpload, new PropertyChangedEventHandler(OnMedicationUploadPropertyChanged), "MedicationUpload", MedicationUploadLogEntity.Relations.MedicationUploadEntityUsingMedicationUploadId, true, new string[] {  });
     }
 }
예제 #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _medicationUpload = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
예제 #3
0
        protected MedicationUploadLogEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _medicationUpload = (MedicationUploadEntity)info.GetValue("_medicationUpload", typeof(MedicationUploadEntity));
                if (_medicationUpload != null)
                {
                    _medicationUpload.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 _medicationUpload</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 DesetupSyncMedicationUpload(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_medicationUpload, new PropertyChangedEventHandler(OnMedicationUploadPropertyChanged), "MedicationUpload", MedicationUploadLogEntity.Relations.MedicationUploadEntityUsingMedicationUploadId, true, signalRelatedEntity, "MedicationUploadLog", resetFKFields, new int[] { (int)MedicationUploadLogFieldIndex.MedicationUploadId });
     _medicationUpload = null;
 }