An open API service indexing awesome lists of open source software.

https://github.com/timothyjan/mvcmovie

Movie Database using ASP.NET Core MVC web development with controllers and views
https://github.com/timothyjan/mvcmovie

Last synced: 8 months ago
JSON representation

Movie Database using ASP.NET Core MVC web development with controllers and views

Awesome Lists containing this project

README

          

# MvcMovie
Movie Database using ASP.NET Core MVC web development with controllers and views

MVC-based apps:


  • Models: Business Logic

    • Classes that represent the data of the app.

    • The model classes use validation logic to enforce business rules for that data.

    • Model objects retrieve and store model state in a database.



  • Views: UI Logic

    • Views are the components that display the app's user interface (UI).

    • This UI displays the model data.



  • Controller: Classes that deal with input logic:

    • Handle browser requests.

    • Retrieve model data.

    • Call view templates that return a response.