add() 개인적인 메소드

private add ( DbTran tran ) : void
tran DbTran
리턴 void
예제 #1
0
파일: DbTran.cs 프로젝트: noear/Weed3
        /*加盟(到某一个事务当中)*/
        public DbTran join(DbTranQueue queue)
        {
            if (queue != null) {
                this.queue = queue;
                queue.add(this);
            }

            return this;
        }
예제 #2
0
        /*加盟(到某一个事务当中)*/
        public DbTran join(DbTranQueue queue)
        {
            if (queue != null)
            {
                this.queue = queue;
                queue.add(this);
            }

            return(this);
        }