コード例 #1
0
ファイル: Scope.cs プロジェクト: jaykannan/iSynaptic.Commons
        protected Scope(ScopeBounds bounds, ScopeNesting nesting)
        {
            Bounds  = Guard.MustBeDefined(bounds, "bounds");
            Nesting = Guard.MustBeDefined(nesting, "nesting");

            Initialize();
        }
コード例 #2
0
 protected EnlistmentScope(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }
コード例 #3
0
 private SystemClock(ScopeBounds bounds, ScopeNesting nesting)
     : base(bounds, nesting)
 {
 }
コード例 #4
0
 protected UnitOfWork(ScopeNesting nesting) : base(ScopeBounds.Thread, nesting)
 {
 }
コード例 #5
0
 public StubScope(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }
コード例 #6
0
 public DisposableContext(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }