Ejemplo n.º 1
0
        public static ShoppingBasket getBasket(string username, string storeName)
        {
            aUser temp = getUser(username);

            if (temp == null)
            {
                return(null);
            }
            return(temp.getBasket(Stores.searchStore(storeName)));
        }