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