public IActionResult Songs()
        {
            var songs = repo.GetAllSongs();

            foreach (var x in songs)
            {
                x.AverageRating = repo.GetAvg(x.songID);
            }


            return(View(songs));
        }