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

            return(Ok(shoppingCarts));
        }