Exemple #1
0
        public static bool supply(string username, string storeName, string productName, int amount, string manufacturer)
        {
            aUser temp = getUser(username);

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