Example #1
0
        public async Task <IEnumerable <CartItem> > GetModels()
        {
            Guid cartId = await GetOrCreateCartIdAsync();

            return(await _cartItemService.GetAllByCartAsync(cartId));
        }