Ejemplo n.º 1
0
        public static TxScope GetScope(TxScope outerScope, TxEnlist txEnlist, string name)
        {
            var newScope = new TxScope(txEnlist)
            {
                OuterScope = outerScope, Name = name
            };

            return(newScope);
        }
Ejemplo n.º 2
0
 public static TxScope GetScope(TxScope outerScope, TxEnlist txEnlist)
 {
     return(GetScope(outerScope, txEnlist, null));
 }