An end-to-end E-commerce Web Application
A simple MVC Web Application using ASP.NET Core and its related frameworks.
- ASP.NET Core MVC
- Entity Framework Core
- LINQ
- MS SQL Server
- Windows Subsystem for Linux (Ubuntu 20.04.6)
- Visual Studio Code
- RestSharp
- Here is a Quick Introduction to Wep Application with .NET CORE
- Install .NET CORE
- Install Visual Studio OR Visual Studio Code
- Install MS SQL Server
- The landing page can be access through:
http://localhost:5045/
- Admin Account (Create, Update, Delete):
- Gmail:
admin@gmail.com
- Password:
Coding@1234?
- Gmail:
/Movies
- List all movies/Movies/Details/{Id}
- See all information of a movie/Movies/Edit/{Id}
- Modify the detail of a movie/Movies/Create
- Add a new movie to the database
/Actors
- List all actors/Actors/Details/{Id}
- See all information of an actor/Actors/Edit/{Id}
- Modify the detail of an actor/Actors/Delete/{Id}
- Delete an actor from the database/Actors/Create
- Add a new actor to the database
/Producers
- List all producers/Producers/Details/{Id}
- See all information of an actor/Producers/Edit/{Id}
- Modify the detail of a producer/Producers/Delete/{Id}
- Delete a producer from the database/Producers/Create
- Add a new producer to the database
/Cinemas
- List all cinema/Cinemas/Details/{Id}
- See all information of a cinema/Cinemas/Edit/{Id}
- Modify the detail of a cinema/Cinemas/Delete/{Id}
- Delete a cinema from the database/Cinemas/Create
- Add a new cinema to the database
- Models
- Views
- Controllers
- SQLite Migration
- CRUD Operations
- Services
- Migrate to MS SQL Server
- Authentication/Authorization
- This project was based on this tutorial.