Beispiel #1
0
        public IActionResult Get(string termo)
        {
            try
            {
                var objetivos    = _objetivoRepository.BuscarPorTermo(termo);
                var qtdObjetivos = objetivos.Count;

                if (qtdObjetivos == 0)
                {
                    return(NoContent());
                }

                return(Ok(new
                {
                    totalCount = qtdObjetivos,
                    data = objetivos
                }));
            }
            catch (Exception ex)
            {
                return(BadRequest(ex.Message + ". contate nossa equipe de suporte para solucionarmos o erro presente nesta página email : [email protected], telefone : (11)31212121"));
            }
        }