0 votes
in IONIC by
What is MVC?

1 Answer

0 votes
by

MVC stands for Model View Controller. It is an architectural model for building the .Net applications.

Models – Model objects store and retrieve data from the database for an application. They are usually the logical parts of an application that is implemented by the application’s data domain.

View – These are the components that display the view of the application in the form of UI. The view gets the information from the model objects for their display. They have components like buttons, drop boxes, combo box, etc.

Controllers – They handle user interactions. They are responsible for responding to the user inputs, work with the model objects, and pick a view to be rendered to the user.

Related questions

0 votes
asked Apr 27, 2020 in IONIC by SakshiSharma
0 votes
asked Apr 27, 2020 in IONIC by SakshiSharma
...