Exemplo n.º 1
0
        static public bool AddBottle(string name, string col, int num, double vol, string manu, int year, string box)
        {
            bool      res = false;
            DBRequest req = new DBRequest();

            res = req.AddBottle(name, col, num, vol, manu, year, box);

            return(res);
        }