Exemple #1
0
 private void InitReferenceStore()
 {
     if (_referenceStore == null)
     {
         _referenceStore = new ReferenceStore();
     }
 }
Exemple #2
0
 public void CopyReferenceStoreFrom(IReadOnlyEntity entity)
 {
     if (entity.Context != null)
     {
         _referenceStore = entity.Context.ReferenceStore;
     }
 }
Exemple #3
0
 public ReferenceAddingHandlerFactory(IReferenceStore store)
 {
     _store = store;
 }
Exemple #4
0
 public void DestroyReferenceStore()
 {
     _referenceStore = null;
 }
 public ReferenceVariableDeserializer(IReferenceStore store)
 {
     _store = store;
 }
Exemple #6
0
 public ReferenceAddingHandler(object instance, IReferenceStore referenceStore)
 {
     _instance = instance;
     _store    = referenceStore;
 }