Exemplo n.º 1
0
 /// <summary>
 /// ���캯��
 /// </summary>
 public SCoprationBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.coprationDB = new SCoprationDB(this.connection);
 }
Exemplo n.º 2
0
 /// <summary>
 /// ���캯��
 /// </summary>
 /// <param name="connection">��������</param>
 public SCoprationBB(SqlConnection connection)
 {
     this.connection = connection;
     this.coprationDB = new SCoprationDB(connection);
 }
Exemplo n.º 3
0
        protected virtual void Dispose(bool disposing)
        {
            if (!disposing)
                return;

            if (this.selfConn)
            {
                this.connection.Close();
                this.connection.Dispose();
                this.connection = null;
            }
            if (this.coprationDB != null)
            {
                this.coprationDB.Dispose();
                this.coprationDB = null;
            }
        }