public clsProductFacade()
 {
     _productCol = new clsProductCollection();
 }
Exemplo n.º 2
0
 public bool Update()
 {
     clsProductCollection _prdCol = new clsProductCollection();
     return (_prdCol.UpdateProduct(this) == 1);
 }
Exemplo n.º 3
0
 public bool Insert()
 {
     clsProductCollection _prdCol = new clsProductCollection();
     return (_prdCol.InsertProduct(this) == 1);
 }
Exemplo n.º 4
0
 public clsProductFacade()
 {
     _productCol = new clsProductCollection();
 }
Exemplo n.º 5
0
        } // Update()

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

            return(_prdCol.InsertProduct(this) == 1);
        } // Insert()
Exemplo n.º 6
0
        public bool Update()
        {
            clsProductCollection _prdCol = new clsProductCollection();

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