Beispiel #1
0
 /// <summary>
 /// ���캯��
 /// </summary>
 public PTeamBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.teamDB = new PTeamDB(this.connection);
 }
Beispiel #2
0
 /// <summary>
 /// ���캯��
 /// </summary>
 /// <param name="connection">��������</param>
 public PTeamBB(SqlConnection connection)
 {
     this.connection = connection;
     this.teamDB = new PTeamDB(connection);
 }
Beispiel #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.teamDB != null)
            {
                this.teamDB.Dispose();
                this.teamDB = null;
            }
        }