internal void RaiseAfterConfigurationObjectLoaded() { OnAfterConfigurationObjectLoaded(); EventHandler <ChoConfigurationObjectEventArgs> afterConfigurationObjectLoadedInternal = AfterConfigurationObjectLoadedInternal; if (afterConfigurationObjectLoadedInternal != null) { ChoConfigurationObjectEventArgs configurationObjectEventArgs = new ChoConfigurationObjectEventArgs(); afterConfigurationObjectLoadedInternal(this, configurationObjectEventArgs); } }
internal void RaiseAfterConfigurationObjectPersisted() { OnAfterConfigurationObjectPersisted(); EventHandler <ChoConfigurationObjectEventArgs> afterConfigurationObjectPersisted = AfterConfigurationObjectPersisted; if (afterConfigurationObjectPersisted != null) { ChoConfigurationObjectEventArgs configurationObjectEventArgs = new ChoConfigurationObjectEventArgs(); afterConfigurationObjectPersisted(this, configurationObjectEventArgs); } }
internal void RaiseAfterConfigurationObjectLoaded() { Initialized = true; //Wire INotifyPropertyChanged members for any changes WireNotifyPropertyChangedMembersForChanges(GetType()); OnAfterConfigurationObjectLoaded(); EventHandler <ChoConfigurationObjectEventArgs> afterConfigurationObjectLoadedInternal = AfterConfigurationObjectLoadedInternal; if (afterConfigurationObjectLoadedInternal != null) { ChoConfigurationObjectEventArgs configurationObjectEventArgs = new ChoConfigurationObjectEventArgs(); afterConfigurationObjectLoadedInternal(this, configurationObjectEventArgs); } }