public ActionResult BuscarAlbuns()
        {
            var albuns = albumRepository.BuscarAlbuns();

            return(Ok(albuns));
        }