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