User-525215917 posted
MVC pattern has three components:
- model - data that is moved between client and server; model also knows how to get data from data source and how to save data,
- view - presentation of view (ASP.NET MVC uses ASP-like syntax for views),
- controller - determines what visitor asked, instantiates model, gives it to view and returns the result.
You can create strongly types views to use your custom models with view. Take a look at
example.