From a10a2e8493bd041bd8a094d7ad667e7454ae6519 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Wed, 8 Nov 2017 10:20:20 -1000 Subject: [PATCH] Update adding-controller1.md (#4747) * Update adding-controller1.md * Update adding-controller1.md --- aspnetcore/includes/mvc-intro/adding-controller1.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aspnetcore/includes/mvc-intro/adding-controller1.md b/aspnetcore/includes/mvc-intro/adding-controller1.md index 1b352b267a..e723c03fe0 100644 --- a/aspnetcore/includes/mvc-intro/adding-controller1.md +++ b/aspnetcore/includes/mvc-intro/adding-controller1.md @@ -8,5 +8,4 @@ The Model-View-Controller (MVC) architectural pattern separates an app into thre The MVC pattern helps you create apps that separate the different aspects of the app (input logic, business logic, and UI logic), while providing a loose coupling between these elements. The pattern specifies where each kind of logic should be located in the app. The UI logic belongs in the view. Input logic belongs in the controller. Business logic belongs in the model. This separation helps you manage complexity when you build an app, because it enables you to work on one aspect of the implementation at a time without impacting the code of another. For example, you can work on the view code without depending on the business logic code. -We cover these concepts in this tutorial series and show you how to use them to build a movie app. The MVC project contains folders for the *Controllers* and *Views*. A *Models* folder will be added in a later step. - +We cover these concepts in this tutorial series and show you how to use them to build a movie app. The MVC project contains folders for the *Controllers* and *Views*.