public void Remove(int id) { try { var orderbs = new OrderBusiness(); orderbs.Borrar(orderbs.GetbyID(id)); } catch (Exception ex) { var httpError = new HttpResponseMessage() { StatusCode = (HttpStatusCode)422, ReasonPhrase = ex.Message }; throw new HttpResponseException(httpError); } }