Lexicon LMS (Learning Management System) is a full-stack Blazor Web App designed to simplify and centralize communication between teachers, students.
It provides scheduling, course materials, assignments, and submissions all in one place, built with Clean Architecture and modern .NET practices.
- 📌 Project Overview
- 🏠 App Home Page
- 📐 Clean Architecture Overview
- 📋 Core Features
- 🛠️ Technologies Used
- 🚀 Getting Started
- 🧪 Testing onGoing
- 🌀 Scrum Process
Lexicon LMS (LexNET) is designed to:
- Give students quick access to courses, modules, schedules, and assignments.
- Allow teachers to easily manage classes, modules, activities, and documents.
- Keep the system lightweight, user-friendly, and responsive compared to traditional heavy LMS platforms.
The solution follows Clean Architecture for scalability and maintainability:
-
🧠 Domain
Core business models and rules:User,Course,Module,Activity,Document. -
⚙️ Application
Interfaces, services, commands/queries (CQRS), DTOs, and validation. -
🗄️ Infrastructure
Data access with Entity Framework Core (code-first).
Includes database context, migrations, and repository implementations. -
🌐 Presentation (Blazor Web App)
Frontend built with Blazor, using Razor Components and Bootstrap 5 for UI.
Communicates with the API viaHttpClient. -
🧪 Tests
Ongoing Unit tests for services and controllers (xUnit, optional TDD).
- Roles: Student and Teacher.
- Authentication and login.
- Teachers can create/edit students and teachers.
- Each student belongs to a single course.
- Courses contain modules with start and end dates.
- Teachers can create/edit courses and modules.
- Modules contain activities (lectures, exercises, assignments, etc.).
- Activities have types, names, descriptions, and start/end times.
- No overlaps outside module or course times.
- Teachers upload course, module, or activity documents.
- Students upload assignment submissions.
- Timestamps, uploader info, and metadata stored.
- 🔷 .NET 9.0
- 🌐 Blazor Web App with Razor Components
- 🎨 Bootstrap 5 for responsive UI
- 💽 Entity Framework Core (code-first)
- 🗄️ SQL Server / PostgreSQL
- 🔐 ASP.NET Core Identity
- 🧪 xUnit (optional, for TDD)
- 🖥️ Visual Studio 2022+
- 🌍 Git & GitHub for version control (feature branches, dev & main)
- .NET 9.0 SDK
- SQL Server or PostgreSQL
- Visual Studio 2022+
- Clone the Repository
git clone https://github.com/YourUser/LexiconLMS.git cd LexiconLMS
- Unit tests with xUnit: Ongoing.
- Mocks for Infrastructure to ensure isolated testing.