Smart Event Booking System is a web application designed to simplify the process of discovering, managing, and booking events such as concerts, lectures, and webinars.
The system enables users to easily browse events, reserve tickets, and track their booking history, while administrators can efficiently create and manage events.
The goal of the project is to provide a user-friendly, scalable, and reliable platform that demonstrates modern web development practices using ASP.NET MVC, including authentication, data management, and clean architecture principles.
To ensure smooth collaboration during the internship, follow this workflow:
main– stable production-ready codedevelop– integration branchfeature/*– new featuresbugfix/*– bug fixes
- Pull latest changes from
develop - Create a new branch:
git checkout -b feature/your-feature-name
- Implement your task
- Commit changes with meaningful messages:
feat: add event creation form
fix: resolve booking validation issue
- Push branch to remote
- Create Pull Request (PR) to
develop - Request code review
- Fix comments if needed
- Merge after approval
- Follow clean architecture principles
- Use meaningful naming conventions
- Apply validation where needed
- Write readable and maintainable code
The project is divided into epics and user stories.
Goal: Enable secure user registration and login.
User Stories:
- As a user, I want to register an account so that I can use the system
- As a user, I want to log in so that I can access my profile
- As a user, I want to log out securely
- As a system, I want to differentiate between Admin and User roles
Goal: Allow admins to create and manage events.
User Stories:
- As an admin, I want to create a new event
- As an admin, I want to edit event details
- As an admin, I want to delete events
- As an admin, I want to view all created events
Goal: Allow users to explore available events.
User Stories:
- As a user, I want to view a list of events
- As a user, I want to view event details
- As a user, I want to filter or search events
Goal: Enable users to book tickets for events.
User Stories:
- As a user, I want to book a ticket for an event
- As a user, I want to see available seats or capacity
- As a system, I want to prevent overbooking
- As a user, I want to cancel my booking
Goal: Provide users with access to their booking history.
User Stories:
- As a user, I want to view my past bookings
- As a user, I want to see booking details
- As a user, I want to track my active reservations
Goal: Provide a simple digital ticket.
User Stories:
- As a user, I want to receive a QR code after booking
- As a system, I want to generate a unique QR per booking
- As a user, I want to view my QR ticket
- ASP.NET MVC / ASP.NET Core
- Entity Framework Core
- MS SQL Server
- ASP.NET Identity
- Optional: JavaScript / React (frontend enhancement)
- Focus on delivering a working MVP within 1 month
- Prioritize functionality over complex UI
- Each feature should be demo-ready
A working web application that demonstrates:
- Authentication & authorization
- CRUD operations
- Booking logic
- Clean architecture
- Team collaboration