Ejemplo n.º 1
0
        public IHttpActionResult GetAllByProperty(string propertyName, string propertyValue)
        {
            var shoppingCarts = shoppingCartRepository.GetAllByProperty(propertyName, propertyValue, includes);

            return(Ok(shoppingCarts));
        }