예제 #1
0
 public AdTransactionScope()
 {
     _helper = DbHelper.GetHelper();
     _helper.BeginTransaction();
 }
예제 #2
0
 public AdTransactionScope(string connectionStringName)
 { 
     _helper = DbHelper.GetHelper(connectionStringName);
     _helper.BeginTransaction();
 }