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