Exemple #1
0
        public static ICollection <Receipt> getReceiptsHistory(string username, string storeName)
        {
            aUser temp = getUser(username);

            if (temp == null)
            {
                return(null);
            }
            return(temp.getMyPurchaseHistory(storeName));
        }