public LessonRu4(IHostingEnvironment hostingEnvironment)
        {
            var XmlRelativePath = @"Lessons/ru/Lesson4.xml";
            var lessonProvider  = new LessonUserInterfaceProvider(XmlRelativePath, hostingEnvironment);

            Steps = lessonProvider.LessonSteps;
        }
Beispiel #2
0
        public Lesson1(IHostingEnvironment hostingEnvironment)
        {
            var lesson1XmlRelativePath = @"Lessons\Lesson1.xml";
            var lessonProvider         = new LessonUserInterfaceProvider(lesson1XmlRelativePath, hostingEnvironment);

            Steps = lessonProvider.LessonSteps;
        }