public async Task <ActionResult <List <AmigosDTO> > > Amigos(string user)
        {
            var all = await _repository.Amigos(user);

            if (all == null)
            {
                return(NotFound());
            }
            return(all);
        }