public IActionResult GetAll() { try { var lista = funcionarioRepository.ConsultarTodos(); if (lista != null && lista.Count > 0) { return(Ok(lista)); } else { return(NoContent()); } } catch (Exception e) { return(StatusCode(500, e.Message)); } }