Exemplo n.º 1
0
 public DataContainer GetDataContainerWithoutLoading(ObjectID objectID)
 {
     return(SafeInnerDataManager.GetDataContainerWithoutLoading(objectID));
 }
Exemplo n.º 2
0
 public void RegisterDataContainer(DataContainer dataContainer)
 {
     SafeInnerDataManager.RegisterDataContainer(dataContainer);
 }
Exemplo n.º 3
0
 public IRelationEndPoint GetRelationEndPointWithLazyLoad(RelationEndPointID endPointID)
 {
     return(SafeInnerDataManager.GetRelationEndPointWithLazyLoad(endPointID));
 }
Exemplo n.º 4
0
 public IRelationEndPoint GetRelationEndPointWithoutLoading(RelationEndPointID endPointID)
 {
     return(SafeInnerDataManager.GetRelationEndPointWithoutLoading(endPointID));
 }
Exemplo n.º 5
0
 public IEnumerable <PersistableData> GetLoadedDataByObjectState(params StateType[] domainObjectStates)
 {
     return(SafeInnerDataManager.GetLoadedDataByObjectState(domainObjectStates));
 }
Exemplo n.º 6
0
 public void Commit()
 {
     SafeInnerDataManager.Commit();
 }
Exemplo n.º 7
0
 public void LoadLazyCollectionEndPoint(RelationEndPointID endPointID)
 {
     SafeInnerDataManager.LoadLazyCollectionEndPoint(endPointID);
 }
Exemplo n.º 8
0
 public DataContainer GetDataContainerWithLazyLoad(ObjectID objectID, bool throwOnNotFound)
 {
     return(SafeInnerDataManager.GetDataContainerWithLazyLoad(objectID, throwOnNotFound));
 }
Exemplo n.º 9
0
 public IDataManagementCommand CreateUnloadVirtualEndPointsCommand(params RelationEndPointID[] endPointIDs)
 {
     return(SafeInnerDataManager.CreateUnloadVirtualEndPointsCommand(endPointIDs));
 }
Exemplo n.º 10
0
 public IDataManagementCommand CreateUnloadAllCommand()
 {
     return(SafeInnerDataManager.CreateUnloadAllCommand());
 }
Exemplo n.º 11
0
 public IDataManagementCommand CreateUnloadCommand(params ObjectID[] objectIDs)
 {
     return(SafeInnerDataManager.CreateUnloadCommand(objectIDs));
 }
Exemplo n.º 12
0
 public IDataManagementCommand CreateDeleteCommand(DomainObject deletedObject)
 {
     return(SafeInnerDataManager.CreateDeleteCommand(deletedObject));
 }
Exemplo n.º 13
0
 public void Rollback()
 {
     SafeInnerDataManager.Rollback();
 }
Exemplo n.º 14
0
 public void Discard(DataContainer dataContainer)
 {
     SafeInnerDataManager.Discard(dataContainer);
 }
Exemplo n.º 15
0
 public void LoadLazyVirtualObjectEndPoint(RelationEndPointID endPointID)
 {
     SafeInnerDataManager.LoadLazyVirtualObjectEndPoint(endPointID);
 }
Exemplo n.º 16
0
 public StateType GetState(ObjectID objectID)
 {
     return(SafeInnerDataManager.GetState(objectID));
 }
Exemplo n.º 17
0
 public DataContainer LoadLazyDataContainer(ObjectID objectID)
 {
     return(SafeInnerDataManager.LoadLazyDataContainer(objectID));
 }
Exemplo n.º 18
0
 public IEnumerable <DataContainer> GetDataContainersWithLazyLoad(IEnumerable <ObjectID> objectIDs, bool throwOnNotFound)
 {
     return(SafeInnerDataManager.GetDataContainersWithLazyLoad(objectIDs, throwOnNotFound));
 }
Exemplo n.º 19
0
 public IVirtualEndPoint GetOrCreateVirtualEndPoint(RelationEndPointID endPointID)
 {
     return(SafeInnerDataManager.GetOrCreateVirtualEndPoint(endPointID));
 }
Exemplo n.º 20
0
 public void MarkInvalid(DomainObject domainObject)
 {
     SafeInnerDataManager.MarkInvalid(domainObject);
 }
Exemplo n.º 21
0
 public void MarkNotInvalid(ObjectID objectID)
 {
     SafeInnerDataManager.MarkNotInvalid(objectID);
 }