public async Task <IActionResult> Cadastrar(StatusViewModel model) { try { return(await _service.Cadastrar(model)); } catch (Exception e) { _logger.LogError(e.Message); return(UnprocessableEntity("Não foi possível atualizar status.")); } }