コード例 #1
0
ファイル: TxScope.cs プロジェクト: cbretanaz/StormWater
        public static TxScope GetScope(TxScope outerScope, TxEnlist txEnlist, string name)
        {
            var newScope = new TxScope(txEnlist)
            {
                OuterScope = outerScope, Name = name
            };

            return(newScope);
        }
コード例 #2
0
ファイル: TxScope.cs プロジェクト: cbretanaz/StormWater
 public static TxScope GetScope(TxScope outerScope, TxEnlist txEnlist)
 {
     return(GetScope(outerScope, txEnlist, null));
 }