/// <summary> /// 构造函数 /// </summary> /// <param name="connection">数据连接</param> public TSBarrivebillBC(SqlConnection connection) { this.connection = connection; this.sBarrivebillBB = new TSBarrivebillBB(this.connection); this.errorDiaryBB = new SErrorDiaryBB(this.connection); this.operatDiaryBB = new SOperatDiaryBB(this.connection); }
/// <summary> /// 构造函数 /// </summary> public TSBarrivebillBC() { this.selfConn = true; this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString); this.connection.Open(); this.sBarrivebillBB = new TSBarrivebillBB(this.connection); this.errorDiaryBB = new SErrorDiaryBB(this.connection); this.operatDiaryBB = new SOperatDiaryBB(this.connection); }