wiki:AddingModules

Version 1 (modified by 221296, 7 days ago) ( diff )

--

Adding Modules and Lessons (Instructor)

Actors: Instructor (INSTRUCTOR)

Steps (Add module):

1. The instructor selects Add New Module.

2. The instructor enters module details.

3. The system creates the module.

INSERT INTO module (course_id, title, description)
VALUES (1, 'Introduction', 'Basic concepts of the course');

Steps (Add module): 1. The instructor selects Add New Lesson for a module

2. The instructor enters lesson details.

3. The system creates the lesson.

INSERT INTO lesson (module_id, title, material)
VALUES (1, 'What is Spring Boot?', 'Lesson content here');


Note: See TracWiki for help on using the wiki.