예제 #1
0
        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)
 {
 }
 public DisposableContext(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }