Skip to content

VincentNguyenDuc/MoviesApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotnet-web-app

An end-to-end E-commerce Web Application

Table of Contents

General Information

A simple MVC Web Application using ASP.NET Core and its related frameworks.

Technologies, Frameworks, and Tools

Setup

Endpoints

  • The landing page can be access through: http://localhost:5045/
  • Admin Account (Create, Update, Delete):
    • Gmail: admin@gmail.com
    • Password: Coding@1234?

Movies

  • /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

  • /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

  • /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

  • /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

To-Dos

  • Models
  • Views
  • Controllers
  • SQLite Migration
  • CRUD Operations
  • Services
  • Migrate to MS SQL Server
  • Authentication/Authorization

Acknowledgements