public ActionResult Index()
        {
            var userId  = Guid.Parse(User.Identity.GetUserId());
            var service = new PlayListService(userId);
            var model   = service.GetNotes();

            return(View(model));
        }