Exemple #1
0
        public ActionResult GetRandomLesson()
        {
            var service = new LessonService();
            var lesson  = service.GetRandomLessonFromList();

            return(View(lesson));
        }