top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is meant by Separation of Concerns?

+5 votes
329 views

Where do we see Separation of Concerns in MVC?

posted Sep 19, 2014 by Khusboo

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

MVC( Model View Controller) Separation of concern:

1.Model will hold the Business class information
2.View will hold only UI part (Aspx or Razor Pages)
3.Controller will hold the Business logic. Based on the user request it will call particular View along with Model Data.
4.In MVC we are maintaining the Business Logic, UI Part and Business Class are in separate places. This kind of Separations only we are calling as Separation of concern.
5.This separation of concern allow u to maintain the large application easily.

answer Feb 25, 2015 by Balamurugan Kn
Similar Questions
+3 votes

Why Razor when we already have ASPX?

+1 vote

All constructors are public then why not destructor? If it is private then how compiler access these private destructor?

...