Develop an MVC project with Web API

1

Someone asks me to develop an application in MVC with various technological elements like Angular, Bootstrap, Entity and etc. I then create a Web API project, can I guarantee for this person who is developed in MVC? This is just conceptual.

    
asked by anonymous 06.12.2017 / 18:16

1 answer

2

MVC is a design design that conceptualizes separation in Model , View and Controller .

In the ASP.NET Web API, we have separate Model and Controller , we did not develop a preview for the user, but if you treat the result endpoint created as View , then we can say that the Web API is a design project that implements MVC.

However, this type of questioning has never come to me if I could define Web API development as if it used the MVC project pattern.

    
06.12.2017 / 18:21