Exemplo n.º 1
0
        public ArrayList searchProduct()
        {
            ArrayList  a = new ArrayList();
            ProductCAD c = new ProductCAD();

            a = c.searchProduct(this);
            return(a);
        }
Exemplo n.º 2
0
        public ArrayList showAllProducts()
        {
            ArrayList  a = new ArrayList();
            ProductCAD c = new ProductCAD();

            a = c.showProduct();
            return(a);
        }
Exemplo n.º 3
0
        public void delete_Product()
        {
            ProductCAD c = new ProductCAD();

            c.deleteProduct(this);
        }
Exemplo n.º 4
0
        public void update_Product()
        {
            ProductCAD c = new ProductCAD();

            c.updateProduct(this);
        }
Exemplo n.º 5
0
        public void add_Product()
        {
            ProductCAD c = new ProductCAD();

            c.addProduct(this);
        }