Exemple #1
0
        public static bool editProduct(string username, string storeName, string productName, double price, string manufacturer)
        {
            aUser temp = getUser(username);

            if (temp == null)
            {
                return(false);
            }
            return(temp.editProduct(storeName, productName, price, manufacturer));
        }