public List <CartItem> List() { try { var bc = new CartItemBusiness(); return(bc.ListarTodosLosItems()); } catch (Exception ex) { var httpError = new HttpResponseMessage() { StatusCode = (HttpStatusCode)422, ReasonPhrase = ex.Message }; throw new HttpResponseException(httpError); } }