public static ShoppingCart getCart(string username) { aUser temp = getUser(username); if (temp == null) { return(null); } return(temp.getCart()); }