// DELETE api/product/5 public bool Delete(int id) { if (id > 0) { return(_eventService.DeleteEvent(id)); } return(false); }