예제 #1
0
 public EntityContainer GetContainer(int containerId)
 {
     using (var scope = ScopeProvider.CreateScope(autoComplete: true))
     {
         return(_dataTypeContainerRepository.Get(containerId));
     }
 }
예제 #2
0
 public EntityContainer?GetContainer(int containerId)
 {
     using ICoreScope scope = ScopeProvider.CreateCoreScope(autoComplete: true);
     return(_dataTypeContainerRepository.Get(containerId));
 }