Exemplo n.º 1
0
        public IActionResult Update([FromBody] Chamado chamado)
        {
            bool update = _chamadoService.Update(chamado);

            if (!update)
            {
                return(NotFound());
            }

            return(NoContent());
        }