コード例 #1
0
 public clsProductFacade()
 {
     _productCol = new clsProductCollection();
 }
コード例 #2
0
 public bool Update()
 {
     clsProductCollection _prdCol = new clsProductCollection();
     return (_prdCol.UpdateProduct(this) == 1);
 }
コード例 #3
0
 public bool Insert()
 {
     clsProductCollection _prdCol = new clsProductCollection();
     return (_prdCol.InsertProduct(this) == 1);
 }
コード例 #4
0
 public clsProductFacade()
 {
     _productCol = new clsProductCollection();
 }
コード例 #5
0
        } // Update()

        public bool Insert()
        {
            clsProductCollection _prdCol = new clsProductCollection();

            return(_prdCol.InsertProduct(this) == 1);
        } // Insert()
コード例 #6
0
        public bool Update()
        {
            clsProductCollection _prdCol = new clsProductCollection();

            return(_prdCol.UpdateProduct(this) == 1);
        } // Update()