public IHttpActionResult DELETE(int id) { // Valid Id check if (id > 0) { _adapter.DeleteComment(id); } return(Ok()); }