public ActionResult <bool> CheckExists(string title) { try { return(Ok(service.CheckIfExists(x => x.Title == title))); } catch (Exception ex) { return(BadRequest(ex.Message)); } }