PlaylistGetAll() public method

public PlaylistGetAll ( ) : IEnumerable
return IEnumerable
        // GET: Playlists
        public ActionResult Index()
        {
            // Study the Index view

            return(View(m.PlaylistGetAll()));
        }
 public ActionResult Index()
 {
     return(View(m.PlaylistGetAll()));
 }
        // GET: Playlist
        public ActionResult Index()
        {
            var o = m.PlaylistGetAll();

            return(View(o));
        }