public IHttpActionResult DeleteExampleById(string Id) { try { _exampleService.DeleteExampleById(Id); return(Ok()); } catch (Exception exception) { throw exception; } }