Reputation: 21
Hello everybody,
I am a student in computer engineering and this is my first question in stackoverflow.
I just started an internship at a company that makes software development and asked me to design and build a web application with ASP.Net MVC makes the management of its IT projects (task management), planning meetings... The application must also provide a dashboard summarizing some activity of the company.
I always mess with UML .. in fact I have several questions and I find no clear answers.
the design of a MVC application is the same as a three-tier application? or the first must follow special design models? I do not really know how to approach the design .. neither the steps by which he must go ..nor in what way that will help me.
Well, I hope so as I do not talk nonsense thank you all
Upvotes: 2
Views: 136
Reputation: 34844
the design of a MVC application is the same as a three-tier application?
No, ASP.NET MVC (MVC in general) is strictly a presentation-tier design pattern. ASP.NET MVC does not care if you have a Business layer or data-access layer at all. This is why you will see in many examples that the controller directly connects to a database.
Upvotes: 1