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