Esempio n. 1
0
        protected Scope(ScopeBounds bounds, ScopeNesting nesting)
        {
            Bounds  = Guard.MustBeDefined(bounds, "bounds");
            Nesting = Guard.MustBeDefined(nesting, "nesting");

            Initialize();
        }
 protected EnlistmentScope(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }
Esempio n. 3
0
 private SystemClock(ScopeBounds bounds, ScopeNesting nesting)
     : base(bounds, nesting)
 {
 }
Esempio n. 4
0
 protected UnitOfWork(ScopeNesting nesting) : base(ScopeBounds.Thread, nesting)
 {
 }
Esempio n. 5
0
 public StubScope(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }
 public DisposableContext(ScopeBounds bounds, ScopeNesting nesting) : base(bounds, nesting)
 {
 }