public void Dispose()
        {
            if (_real == null)return;

            var disposable = _real as IDisposable;
            if (disposable == null)
                return;

            disposable.Dispose();
            _real = null;
        }
Example #2
0
        public void Dispose()
        {
            if (_real == null)
            {
                return;
            }

            var disposable = _real as IDisposable;

            if (disposable == null)
            {
                return;
            }

            disposable.Dispose();
            _real = null;
        }
 public StoreStudyRootQuery(IStudyStoreQuery real)
 {
     _real = real;
 }
Example #4
0
 public StudyStoreBridge(IStudyStoreQuery real)
 {
     _real = real;
 }
 public StudyStoreBridge(IStudyStoreQuery real)
 {
     _real = real;
 }
Example #6
0
 public StoreStudyRootQuery(IStudyStoreQuery real)
 {
     _real = real;
 }