public ActionResult <IEnumerable <SearchResult> > Get(string word)
        {
            var retorno   = new Development();
            var lista     = retorno.DadosYoutTube(word);
            var novaLista = new List <SearchResult>();

            foreach (var item in lista)
            {
                var novoObjeto = new Dados {
                    Description = item.Snippet.Description, Name = item.Snippet.ChannelTitle, URL = item.Snippet.ChannelId
                };
                _dataService.Create(novoObjeto);
                novaLista.Add(item);
            }
            //return retorno.DadosYoutTube(word);
            return(novaLista);
        }