public IActionResult UpdateTema([FromBody] TemaModel tema, int id) { _temaService.Atualizar(id, tema?.Nome, tema?.Descricao); return(NoContent()); }