public IActionResult Get(int id) { try { return(Ok(_exameService.Get(id).ToExameViewModel())); } catch (AppException ex) { return(SendFeedback(ex.Message)); } catch (System.Exception ex) { _logger.LogError(ex.Message, ex, ex.InnerException); return(SendFeedback(_unavailable)); } }