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
- Host: GitHub
- URL: https://github.com/timothyjan/mvcmovie
- Owner: TimothyJan
- Created: 2024-08-01T18:21:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-07T23:33:28.000Z (almost 2 years ago)
- Last Synced: 2025-03-26T04:29:56.340Z (about 1 year ago)
- Language: C#
- Size: 21.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.