Пример #1
0
 public ActionResult Index()
 {
     SongRepository _context = new SongRepository();
     List<SongModel> TopSongs = _context.GetTopSongs(6).ToList();
     return View(TopSongs);
 }