public Playlist GetById(int id)
        {
            var playlist = _context.GetPlaylist(id);

            return(playlist);
        }