public ActionResult ChaptersList()
        {
            LessonsDal gld = new LessonsDal();
            List<Chapter> list = gld.GetChapters();

            return View(list);
        }