示例#1
0
        //ilgili kullanıcıya ait sepet
        public IActionResult Get(string customerUsername)
        {
            ServiceResponse <ShoppingCartItem> response = new ServiceResponse <ShoppingCartItem>();

            response.Entities  = _shoppingCartItemService.GetEx(s => s.CustomerUserName == customerUsername);
            response.IsSuccess = true;

            return(Ok(response));
        }